From f470d440178be5745674cf4d287e6c66877d7e52 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Tue, 23 Nov 2004 15:48:06 -0500 Subject: [svn-r9565] Purpose: Improvement. Description: Change the default CC, F9X and CXX compilers from ecc/efc/ecc to icc/ifort/icc because Intel keeps changing their compiler names. This eliminated the warning messages that a wrong compiler name is used. Platforms tested: Tested in Tg-login NCSA only since that is the only IA64 platform on site. --- config/ia64-linux-gnu | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu index c93c218..b4f3c49 100644 --- a/config/ia64-linux-gnu +++ b/config/ia64-linux-gnu @@ -5,9 +5,9 @@ # the various compile modes. # Use Intel C compiler by default (if it's available). -if test "X$CC" = "X" && which ecc > /dev/null; then - CC=ecc - CC_BASENAME=ecc +if test "X$CC" = "X" && which icc > /dev/null; then + CC=icc + CC_BASENAME=icc fi #---------------------------------------------------------------------------- @@ -62,11 +62,11 @@ R_INTEGER=9 # Use Intel Fortran compiler by default. if test "X-$F9X" = "X-"; then - F9X="efc" + F9X="ifort" fi case $F9X in - *efc) + *efc|*ifort) # this is for efc v7. Older efc do not work with these. # -Vaxlib is for non-standard fortran calls like exit(). MORE_FFLAGS='-fpp -DDEC$=DEC_ -DMS$=MS_ -Vaxlib' @@ -102,8 +102,8 @@ fi # The Default settings for C++ if test -z "$CXX"; then - CXX=ecc - CXX_BASENAME=ecc + CXX=icc + CXX_BASENAME=icc fi # A patch to make g++ getting the default settings. -- cgit v0.12