dbertoni 2003/03/20 08:38:33 Modified: c/src runConfigure Makefile.in Log: Updates for Intel compiler on Linux. Revision Changes Path 1.18 +8 -1 xml-xalan/c/src/runConfigure Index: runConfigure =================================================================== RCS file: /home/cvs/xml-xalan/c/src/runConfigure,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- runConfigure 8 Feb 2003 01:39:33 -0000 1.17 +++ runConfigure 20 Mar 2003 16:38:32 -0000 1.18 @@ -58,6 +58,9 @@ # # # $Log$ +# Revision 1.18 2003/03/20 16:38:32 dbertoni +# Updates for Intel compiler on Linux. +# # Revision 1.17 2003/02/08 01:39:33 dbertoni # Don't add bitstobuildLink on AIX. # @@ -258,7 +261,11 @@ if test $debug = "off"; then echo "Debug is OFF" if test $platform = "linux"; then - debugflag="-O2 -DNDEBUG"; + if test $cppcompiler = "icpc"; then + debugflag="-O3 -DNDEBUG"; + else + debugflag="-O2 -DNDEBUG"; + fi else debugflag="-O -DNDEBUG"; fi 1.118 +1 -1 xml-xalan/c/src/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/xml-xalan/c/src/Makefile.in,v retrieving revision 1.117 retrieving revision 1.118 diff -u -r1.117 -r1.118 --- Makefile.in 12 Mar 2003 02:06:44 -0000 1.117 +++ Makefile.in 20 Mar 2003 16:38:33 -0000 1.118 @@ -158,7 +158,7 @@ ifeq (${CXX}, icpc) PIC_OPTION=-KPIC - PLATFORM_COMPILE_OPTIONS = -w1 -Xa -mp -prec_div + PLATFORM_COMPILE_OPTIONS = -ansi else
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]