CMakeTestCXXCompiler.cmake 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #=============================================================================
  2. # Copyright 2003-2012 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. if(CMAKE_CXX_COMPILER_FORCED)
  14. # The compiler configuration was forced by the user.
  15. # Assume the user has configured all compiler information.
  16. set(CMAKE_CXX_COMPILER_WORKS TRUE)
  17. return()
  18. endif()
  19. include(CMakeTestCompilerCommon)
  20. # Remove any cached result from an older CMake version.
  21. # We now store this in CMakeCXXCompiler.cmake.
  22. unset(CMAKE_CXX_COMPILER_WORKS CACHE)
  23. # This file is used by EnableLanguage in cmGlobalGenerator to
  24. # determine that that selected C++ compiler can actually compile
  25. # and link the most basic of programs. If not, a fatal error
  26. # is set and cmake stops processing commands and will not generate
  27. # any makefiles or projects.
  28. if(NOT CMAKE_CXX_COMPILER_WORKS)
  29. PrintTestCompilerStatus("CXX" "")
  30. file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx
  31. "#ifndef __cplusplus\n"
  32. "# error \"The CMAKE_CXX_COMPILER is set to a C compiler\"\n"
  33. "#endif\n"
  34. "int main(){return 0;}\n")
  35. try_compile(CMAKE_CXX_COMPILER_WORKS ${CMAKE_BINARY_DIR}
  36. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx
  37. OUTPUT_VARIABLE __CMAKE_CXX_COMPILER_OUTPUT)
  38. # Move result from cache to normal variable.
  39. set(CMAKE_CXX_COMPILER_WORKS ${CMAKE_CXX_COMPILER_WORKS})
  40. unset(CMAKE_CXX_COMPILER_WORKS CACHE)
  41. set(CXX_TEST_WAS_RUN 1)
  42. endif()
  43. if(NOT CMAKE_CXX_COMPILER_WORKS)
  44. PrintTestCompilerStatus("CXX" " -- broken")
  45. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  46. "Determining if the CXX compiler works failed with "
  47. "the following output:\n${__CMAKE_CXX_COMPILER_OUTPUT}\n\n")
  48. message(FATAL_ERROR "The C++ compiler \"${CMAKE_CXX_COMPILER}\" "
  49. "is not able to compile a simple test program.\nIt fails "
  50. "with the following output:\n ${__CMAKE_CXX_COMPILER_OUTPUT}\n\n"
  51. "CMake will not be able to correctly generate this project.")
  52. else()
  53. if(CXX_TEST_WAS_RUN)
  54. PrintTestCompilerStatus("CXX" " -- works")
  55. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  56. "Determining if the CXX compiler works passed with "
  57. "the following output:\n${__CMAKE_CXX_COMPILER_OUTPUT}\n\n")
  58. endif()
  59. # Try to identify the ABI and configure it into CMakeCXXCompiler.cmake
  60. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerABI.cmake)
  61. CMAKE_DETERMINE_COMPILER_ABI(CXX ${CMAKE_ROOT}/Modules/CMakeCXXCompilerABI.cpp)
  62. # Try to identify the compiler features
  63. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompileFeatures.cmake)
  64. CMAKE_DETERMINE_COMPILE_FEATURES(CXX)
  65. # Re-configure to save learned information.
  66. configure_file(
  67. ${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in
  68. ${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake
  69. @ONLY
  70. )
  71. include(${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake)
  72. if(CMAKE_CXX_SIZEOF_DATA_PTR)
  73. foreach(f ${CMAKE_CXX_ABI_FILES})
  74. include(${f})
  75. endforeach()
  76. unset(CMAKE_CXX_ABI_FILES)
  77. endif()
  78. endif()
  79. unset(__CMAKE_CXX_COMPILER_OUTPUT)