diff options
author | netchild <netchild@FreeBSD.org> | 2003-08-22 19:20:38 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2003-08-22 19:20:38 +0800 |
commit | d7060741f114b795bebe6da2383bf62f0db88259 (patch) | |
tree | 3007dfef93abc127ad3a125c0f4b43d69ae28973 /lang/icc7 | |
parent | 9d4975142b01e3540b2ac0f5728e17a85a4ebefd (diff) | |
download | freebsd-ports-gnome-d7060741f114b795bebe6da2383bf62f0db88259.tar.gz freebsd-ports-gnome-d7060741f114b795bebe6da2383bf62f0db88259.tar.zst freebsd-ports-gnome-d7060741f114b795bebe6da2383bf62f0db88259.zip |
Fix __sigsetjmp linking problem.
Diffstat (limited to 'lang/icc7')
-rw-r--r-- | lang/icc7/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lang/icc7/Makefile b/lang/icc7/Makefile index 04ef8717e7ba..8c77d67081a5 100644 --- a/lang/icc7/Makefile +++ b/lang/icc7/Makefile @@ -7,7 +7,7 @@ PORTNAME= icc PORTVERSION= 7.1.027 -#PORTREVISION= 1 +PORTREVISION= 1 CATEGORIES= lang linux devel MASTER_SITES= DISTNAME= l_cc_pc_${PORTVERSION} @@ -130,7 +130,8 @@ do-build: @${CC} ${CFLAGS} -c -o ${WRKSRC}/stderr.o ${FILESDIR}/stderr.c .else .for i in libcxa.a libimf.a libirc.a libircmt.a libunwind.a - @${OBJCOPY} --redefine-sym stdin=__stdinp \ + @${OBJCOPY} --redefine-sym __sigsetjmp=sigsetjmp \ + --redefine-sym stdin=__stdinp \ --redefine-sym stdout=__stdoutp \ --redefine-sym stderr=__stderrp \ ${WRKSRC}/opt/intel/${COMPILERDIR}/ia32/lib/${i} |