diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-03-01 20:41:02 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-03-01 20:41:02 (GMT) |
commit | 9071b8b87f0e63f10f1f77949246c1b4241cfb6c (patch) | |
tree | ea76ccda1a8f44bfd717c9fc228b58111ed36647 /Modules/CMakeDetermineCompilerId.cmake | |
parent | 48f7199df083f1b6f18a02b97cfec09ce5efffbd (diff) | |
download | CMake-9071b8b87f0e63f10f1f77949246c1b4241cfb6c.zip CMake-9071b8b87f0e63f10f1f77949246c1b4241cfb6c.tar.gz CMake-9071b8b87f0e63f10f1f77949246c1b4241cfb6c.tar.bz2 |
Add temporary debug output for compiler ID detection for ASM
Alex
Diffstat (limited to 'Modules/CMakeDetermineCompilerId.cmake')
-rw-r--r-- | Modules/CMakeDetermineCompilerId.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake index 9a3884a..b160dee 100644 --- a/Modules/CMakeDetermineCompilerId.cmake +++ b/Modules/CMakeDetermineCompilerId.cmake @@ -287,6 +287,13 @@ FUNCTION(CMAKE_DETERMINE_COMPILER_ID_VENDOR lang) RESULT_VARIABLE result TIMEOUT 10 ) + + IF("${lang}" STREQUAL "ASM") + MESSAGE(STATUS "Checked for ${vendor}") + MESSAGE(STATUS " Output: -${output}-") + MESSAGE(STATUS " Result: -${result}-") + ENDIF("${lang}" STREQUAL "ASM") + IF("${output}" MATCHES "${regex}") FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log "Checking whether the ${lang} compiler is ${vendor} using \"${flags}\" " |