From 0a1facf57a0d1f72a71edb9e3906d128820e6397 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 7 Jul 2003 11:56:56 +0000 Subject: [PATCH] Moved intel selection up above gcc selection - intel 8 defines __GNUC__ on linux... [SVN r18957] --- include/boost/config/select_compiler_config.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/config/select_compiler_config.hpp b/include/boost/config/select_compiler_config.hpp index c4471ebd..8a16a48c 100644 --- a/include/boost/config/select_compiler_config.hpp +++ b/include/boost/config/select_compiler_config.hpp @@ -14,6 +14,10 @@ // Comeau C++ # define BOOST_COMPILER_CONFIG "boost/config/compiler/comeau.hpp" +#elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) +// Intel +# define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp" + # elif defined __GNUC__ // GNU C++: # define BOOST_COMPILER_CONFIG "boost/config/compiler/gcc.hpp" @@ -38,10 +42,6 @@ // Borland # define BOOST_COMPILER_CONFIG "boost/config/compiler/borland.hpp" -#elif defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC) -// Intel -# define BOOST_COMPILER_CONFIG "boost/config/compiler/intel.hpp" - #elif defined __MWERKS__ // Metrowerks CodeWarrior # define BOOST_COMPILER_CONFIG "boost/config/compiler/metrowerks.hpp"