From acb664910b4dd8885a24445f9ed62bca8990abce Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Thu, 26 May 2005 10:29:45 -0500 Subject: [PATCH] [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: --- config/ia64-linux-gnu | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/ia64-linux-gnu b/config/ia64-linux-gnu index 8cdfd1ceee..11cfacbe15 100644 --- a/config/ia64-linux-gnu +++ b/config/ia64-linux-gnu @@ -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.