[svn-r10804] Purpose: Maintenance

Description: Altix configuration file used icc for the default C++ compiler.
             Since cobalt moved to Intel 8.1, C++ compilation failed.

Solution: Changed icc to icpc for the default C++ compiler on Altix.

Platforms tested: cobalt

Misc. update:
This commit is contained in:
Elena Pourmal 2005-05-26 10:29:45 -05:00
parent 6cee742690
commit acb664910b

View File

@ -92,9 +92,10 @@ if test "X$f9x_flags_set" = "X"; then
fi
# The Default settings for C++
# Intel changed C++ compiler's name from "icc" to "icpc" in version 8.1
if test -z "$CXX"; then
CXX=icc
CXX_BASENAME=icc
CXX=icpc
CXX_BASENAME=icpc
fi
# A patch to make g++ getting the default settings.