summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineCompilerId.cmake
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2014-09-03 21:00:48 (GMT)
committerChuck Atkins <chuck.atkins@kitware.com>2014-09-03 21:00:48 (GMT)
commit3e84e78c3fcd2575a4159c3a1619833a7a80ef17 (patch)
tree968ce764d01dc78dd6b09d941d42465e2a8b80d7 /Modules/CMakeDetermineCompilerId.cmake
parentfb8acb74e83a591c1231c4a07c221f4392f4c0be (diff)
downloadCMake-3e84e78c3fcd2575a4159c3a1619833a7a80ef17.zip
CMake-3e84e78c3fcd2575a4159c3a1619833a7a80ef17.tar.gz
CMake-3e84e78c3fcd2575a4159c3a1619833a7a80ef17.tar.bz2
Use a more reliable regex for extracting binary INFO strings
A few different regular expressions were being used in various places to extract info strings from binaries. This uses a consistent regex amongst all of them now. This also fixes the broken ABI detection for Cray compilers.
Diffstat (limited to 'Modules/CMakeDetermineCompilerId.cmake')
-rw-r--r--Modules/CMakeDetermineCompilerId.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake
index 1fca55d..e00f22a 100644
--- a/Modules/CMakeDetermineCompilerId.cmake
+++ b/Modules/CMakeDetermineCompilerId.cmake
@@ -390,7 +390,7 @@ function(CMAKE_DETERMINE_COMPILER_ID_CHECK lang file)
set(SIMULATE_ID)
set(SIMULATE_VERSION)
file(STRINGS ${file}
- CMAKE_${lang}_COMPILER_ID_STRINGS LIMIT_COUNT 6 REGEX "INFO:")
+ CMAKE_${lang}_COMPILER_ID_STRINGS LIMIT_COUNT 6 REGEX "INFO:[A-Za-z0-9_]+\\[[^]]*\\]")
set(COMPILER_ID_TWICE)
foreach(info ${CMAKE_${lang}_COMPILER_ID_STRINGS})
if("${info}" MATCHES "INFO:compiler\\[([^]\"]*)\\]")