From: John W. <joe...@us...> - 2004-11-17 23:33:42
|
Update of /cvsroot/javabdd/JavaBDD In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26789 Modified Files: Makefile Log Message: Update to work around bug in icc with static linking. Index: Makefile =================================================================== RCS file: /cvsroot/javabdd/JavaBDD/Makefile,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** Makefile 17 Nov 2004 05:55:59 -0000 1.36 --- Makefile 17 Nov 2004 23:33:25 -0000 1.37 *************** *** 69,74 **** ifeq (${CC},icc) # Intel Linux compiler CFLAGS = -DSPECIALIZE_RELPROD -DSPECIALIZE_AND -DSPECIALIZE_OR -O2 -Ob2 -ip $(EXTRA_CFLAGS) ! LINK = icc ! LINKFLAGS = -static -shared $(CFLAGS) endif ifeq (${CC},pathcc) # Pathscale compiler --- 69,75 ---- ifeq (${CC},icc) # Intel Linux compiler CFLAGS = -DSPECIALIZE_RELPROD -DSPECIALIZE_AND -DSPECIALIZE_OR -O2 -Ob2 -ip $(EXTRA_CFLAGS) ! LINK = xild # Bug in icc link makes it ignore -static, so use xild ! # Include libirc for _intel_fast_memset ! LINKFLAGS = -static -shared /opt/intel_cc_80/lib/libirc.a endif ifeq (${CC},pathcc) # Pathscale compiler |