diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-11-23 20:48:06 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-11-23 20:48:06 (GMT) |
commit | f470d440178be5745674cf4d287e6c66877d7e52 (patch) | |
tree | 3c8a1edb946122e651bf58441d632c60662eee59 /config/ia64-linux-gnu | |
parent | 0535c9b048a090ae6cecf2b957e8d88e4e178d1a (diff) | |
download | hdf5-f470d440178be5745674cf4d287e6c66877d7e52.zip hdf5-f470d440178be5745674cf4d287e6c66877d7e52.tar.gz hdf5-f470d440178be5745674cf4d287e6c66877d7e52.tar.bz2 |
[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.
Diffstat (limited to 'config/ia64-linux-gnu')
-rw-r--r-- | config/ia64-linux-gnu | 14 |
1 files 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. |