diff options
author | Brad King <brad.king@kitware.com> | 2008-01-21 23:30:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-21 23:30:17 (GMT) |
commit | a28b197b11f4b647c67a6914c731077972449343 (patch) | |
tree | 48e3cad97678cc49ef2b63c210d4e712a4dc58fa /Modules/CMakeTestCXXCompiler.cmake | |
parent | 19d22f6105ae064378e9175bed6a01b197e2eb5d (diff) | |
download | CMake-a28b197b11f4b647c67a6914c731077972449343.zip CMake-a28b197b11f4b647c67a6914c731077972449343.tar.gz CMake-a28b197b11f4b647c67a6914c731077972449343.tar.bz2 |
ENH: Generalize the check for sizeof void* to detect more ABI information.
Diffstat (limited to 'Modules/CMakeTestCXXCompiler.cmake')
-rw-r--r-- | Modules/CMakeTestCXXCompiler.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/CMakeTestCXXCompiler.cmake b/Modules/CMakeTestCXXCompiler.cmake index 0b0fefc..44a67ad 100644 --- a/Modules/CMakeTestCXXCompiler.cmake +++ b/Modules/CMakeTestCXXCompiler.cmake @@ -34,4 +34,13 @@ ELSE(NOT CMAKE_CXX_COMPILER_WORKS) "the following output:\n${OUTPUT}\n\n") ENDIF(CXX_TEST_WAS_RUN) SET(CMAKE_CXX_COMPILER_WORKS 1 CACHE INTERNAL "") + + # Try to identify the ABI and configure it into CMakeCXXCompiler.cmake + INCLUDE(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerABI.cmake) + CMAKE_DETERMINE_COMPILER_ABI(CXX ${CMAKE_ROOT}/Modules/CMakeCXXCompilerABI.cpp) + CONFIGURE_FILE( + ${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in + ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeCXXCompiler.cmake + @ONLY + ) ENDIF(NOT CMAKE_CXX_COMPILER_WORKS) |