You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.8 KiB

  1. # This file is used by EnableLanguage in cmGlobalGenerator to
  2. # determine that that selected C++ compiler can actually compile
  3. # and link the most basic of programs. If not, a fatal error
  4. # is set and cmake stops processing commands and will not generate
  5. # any makefiles or projects.
  6. IF(NOT CMAKE_CXX_COMPILER_WORKS)
  7. MESSAGE(STATUS "Check for working CXX compiler: ${CMAKE_CXX_COMPILER}")
  8. FILE(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx
  9. "#ifndef __cplusplus\n"
  10. "# error \"The CMAKE_CXX_COMPILER is set to a C compiler\"\n"
  11. "#endif\n"
  12. "int main(){return 0;}\n")
  13. TRY_COMPILE(CMAKE_CXX_COMPILER_WORKS ${CMAKE_BINARY_DIR}
  14. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testCXXCompiler.cxx
  15. OUTPUT_VARIABLE OUTPUT)
  16. SET(CXX_TEST_WAS_RUN 1)
  17. ENDIF(NOT CMAKE_CXX_COMPILER_WORKS)
  18. IF(NOT CMAKE_CXX_COMPILER_WORKS)
  19. MESSAGE(STATUS "Check for working CXX compiler: ${CMAKE_CXX_COMPILER} -- broken")
  20. FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  21. "Determining if the CXX compiler works failed with "
  22. "the following output:\n${OUTPUT}\n\n")
  23. MESSAGE(FATAL_ERROR "The C++ compiler \"${CMAKE_CXX_COMPILER}\" "
  24. "is not able to compile a simple test program.\nIt fails "
  25. "with the following output:\n ${OUTPUT}\n\n"
  26. "CMake will not be able to correctly generate this project.")
  27. ELSE(NOT CMAKE_CXX_COMPILER_WORKS)
  28. IF(CXX_TEST_WAS_RUN)
  29. MESSAGE(STATUS "Check for working CXX compiler: ${CMAKE_CXX_COMPILER} -- works")
  30. FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  31. "Determining if the CXX compiler works passed with "
  32. "the following output:\n${OUTPUT}\n\n")
  33. ENDIF(CXX_TEST_WAS_RUN)
  34. SET(CMAKE_CXX_COMPILER_WORKS 1 CACHE INTERNAL "")
  35. ENDIF(NOT CMAKE_CXX_COMPILER_WORKS)