diff options
author | Brad King <brad.king@kitware.com> | 2007-05-01 18:35:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-01 18:35:55 (GMT) |
commit | 2db8d671e7e9a23f436589c43185d35c8c0a9cd3 (patch) | |
tree | 5211e6c8dd34dc637ab02e54e0193e2d9bf013b8 /Modules | |
parent | 87853ed828e8c013ca9ac860c1bbb46198c6d78b (diff) | |
download | CMake-2db8d671e7e9a23f436589c43185d35c8c0a9cd3.zip CMake-2db8d671e7e9a23f436589c43185d35c8c0a9cd3.tar.gz CMake-2db8d671e7e9a23f436589c43185d35c8c0a9cd3.tar.bz2 |
ENH: Changed GNUC compiler id name to GNU.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeCCompilerId.c | 2 | ||||
-rw-r--r-- | Modules/CMakeCXXCompilerId.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CMakeCCompilerId.c b/Modules/CMakeCCompilerId.c index 08a4128..0d8a215 100644 --- a/Modules/CMakeCCompilerId.c +++ b/Modules/CMakeCCompilerId.c @@ -22,7 +22,7 @@ static char const info_compiler[] = "INFO:compiler[" #elif defined(__IBMC__) "VisualAge" #elif defined(__GNUC__) -"GNUC" +"GNU" #elif defined(_MSC_VER) "MSVC" #elif defined(_COMPILER_VERSION) diff --git a/Modules/CMakeCXXCompilerId.cpp b/Modules/CMakeCXXCompilerId.cpp index 87baea2..183950f 100644 --- a/Modules/CMakeCXXCompilerId.cpp +++ b/Modules/CMakeCXXCompilerId.cpp @@ -23,7 +23,7 @@ static char const info_compiler[] = "INFO:compiler[" #elif defined(__IBMCPP__) "VisualAge" #elif defined(__GNUC__) -"GNUC" +"GNU" #elif defined(_MSC_VER) "MSVC" #elif defined(_COMPILER_VERSION) |