diff options
author | Alexander Leidinger <netchild@FreeBSD.org> | 2003-08-22 11:20:38 +0000 |
---|---|---|
committer | Alexander Leidinger <netchild@FreeBSD.org> | 2003-08-22 11:20:38 +0000 |
commit | df7dde8b419cfab021b2d966ab94ca4df5c033d2 (patch) | |
tree | 0037fe583ab0dc25b1de7ec33e8b9836eb545f0c /lang/icc7/Makefile | |
parent | new port of pawm, the Puto Amo Window Manager (diff) |
Fix __sigsetjmp linking problem.
Diffstat (limited to '')
-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} |