From 4f82ba7aeb62da4c8f537a697ced68c43d262f8f Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 28 Sep 2010 14:07:01 +0200 Subject: Invert the buildkey logic for compilers. Make ICC use "g++-4" as the official buildkey, since it's supposed to be completely ABI-compatible. Keep the older build key for compatibility with plugins built with ICC prior to 4.7. Reviewed-By: Bradley T. Hughes --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 4316cc8..53f520a 100755 --- a/configure +++ b/configure @@ -7356,14 +7356,14 @@ g++*) icc*) # The Intel CC compiler on Unix systems matches the ABI of the g++ # that is found on PATH - COMPILER="icc" - COMPAT_COMPILER="g++-4" + COMPAT_COMPILER="icc" + COMPILER="g++-4" case "`g++ -dumpversion` 2>/dev/null" in 2.95.*) - COMPAT_COMPILER="g++-2.95.*" + COMPILER="g++-2.95.*" ;; 3.*) - COMPAT_COMPILER="g++-3.*" +a COMPILER="g++-3.*" ;; *) ;; -- cgit v0.12