From: Steve Peters Date: Thu, 13 Jul 2006 15:46:11 +0000 (+0000) Subject: Keep Intel C++ from claiming that it is gcc. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6ae709ad20fb5debe5f58c9686ed99226819442f;p=p5sagit%2Fp5-mst-13.2.git Keep Intel C++ from claiming that it is gcc. p4raw-id: //depot/perl@28566 --- diff --git a/hints/linux.sh b/hints/linux.sh index 7f348ef..98bdc9c 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -78,7 +78,8 @@ case "`${cc:-cc} -V 2>&1`" in *"Intel(R) C++ Compiler"*|*"Intel(R) C Compiler"*) # This is needed for Configure's prototype checks to work correctly # The -mp1 flag is needed to pass cmp related tests - ccflags="-we147 -mp1 $ccflags" + # The -no-gcc flag is needed otherwise, icc pretends (poorly) to be gcc + ccflags="-we147 -mp1 -no-gcc $ccflags" # If we're using ICC, we usually want the best performance case "$optimize" in '') optimize='-O3' ;;