summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeCXXCompilerId.cpp
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-23 15:00:54 (GMT)
committerBrad King <brad.king@kitware.com>2007-05-23 15:00:54 (GMT)
commit2d051a67098333625a2c3f8a25b65936aa889239 (patch)
tree75b7673456d5ae13a78e83d7406c85b6f8d2ee58 /Modules/CMakeCXXCompilerId.cpp
parent526b72e12ce05798e897ad544b28924db4651946 (diff)
downloadCMake-2d051a67098333625a2c3f8a25b65936aa889239.zip
CMake-2d051a67098333625a2c3f8a25b65936aa889239.tar.gz
CMake-2d051a67098333625a2c3f8a25b65936aa889239.tar.bz2
ENH: Unify design of CMakeCCompilerId.c, CMakeCXXCompilerId.cpp, and CMakePlatformId.h. BUG: Do not violate system-reserved symbol namespace _[A-Z].
Diffstat (limited to 'Modules/CMakeCXXCompilerId.cpp')
-rw-r--r--Modules/CMakeCXXCompilerId.cpp44
1 files changed, 28 insertions, 16 deletions
diff --git a/Modules/CMakeCXXCompilerId.cpp b/Modules/CMakeCXXCompilerId.cpp
index 0d8e32a..88d4771 100644
--- a/Modules/CMakeCXXCompilerId.cpp
+++ b/Modules/CMakeCXXCompilerId.cpp
@@ -5,42 +5,54 @@
# error "A C compiler has been selected for C++."
#endif
-static char const info_compiler[] = "INFO:compiler["
#if defined(__COMO__)
-"Comeau"
+# define COMPILER_ID "Comeau"
+
#elif defined(__INTEL_COMPILER) || defined(__ICC)
-"Intel"
+# define COMPILER_ID "Intel"
+
#elif defined(__BORLANDC__)
-"Borland"
+# define COMPILER_ID "Borland"
+
#elif defined(__WATCOMC__)
-"Watcom"
+# define COMPILER_ID "Watcom"
+
#elif defined(__SUNPRO_CC)
-"SunPro"
+# define COMPILER_ID "SunPro"
+
#elif defined(__HP_aCC)
-"HP"
+# define COMPILER_ID "HP"
+
#elif defined(__DECCXX)
-"Compaq"
+# define COMPILER_ID "Compaq"
+
#elif defined(__IBMCPP__)
-"VisualAge"
+# define COMPILER_ID "VisualAge"
+
#elif defined(__GNUC__)
-"GNU"
+# define COMPILER_ID "GNU"
+
#elif defined(_MSC_VER)
-"MSVC"
+# define COMPILER_ID "MSVC"
+
#elif defined(_COMPILER_VERSION)
-"MIPSpro"
+# define COMPILER_ID "MIPSpro"
/* This compiler is either not known or is too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__sgi)
-"MIPSpro"
+# define COMPILER_ID "MIPSpro"
+
#elif defined(__hpux) || defined(__hpua)
-"HP"
+# define COMPILER_ID "HP"
#else /* unknown compiler */
-""
+# define COMPILER_ID ""
+
#endif
-"]";
+
+static char const info_compiler[] = "INFO:compiler[" COMPILER_ID "]";
/* Include the platform identification source. */
#include "CMakePlatformId.h"