CheckCSourceCompiles.cmake 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #.rst:
  2. # CheckCSourceCompiles
  3. # --------------------
  4. #
  5. # Check if given C source compiles and links into an executable
  6. #
  7. # CHECK_C_SOURCE_COMPILES(<code> <var> [FAIL_REGEX <fail-regex>])
  8. #
  9. # ::
  10. #
  11. # <code> - source code to try to compile, must define 'main'
  12. # <var> - variable to store whether the source code compiled
  13. # Will be created as an internal cache variable.
  14. # <fail-regex> - fail if test output matches this regex
  15. #
  16. # The following variables may be set before calling this macro to modify
  17. # the way the check is run:
  18. #
  19. # ::
  20. #
  21. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  22. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  23. # CMAKE_REQUIRED_INCLUDES = list of include directories
  24. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  25. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  26. #=============================================================================
  27. # Copyright 2005-2009 Kitware, Inc.
  28. #
  29. # Distributed under the OSI-approved BSD License (the "License");
  30. # see accompanying file Copyright.txt for details.
  31. #
  32. # This software is distributed WITHOUT ANY WARRANTY; without even the
  33. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  34. # See the License for more information.
  35. #=============================================================================
  36. # (To distribute this file outside of CMake, substitute the full
  37. # License text for the above reference.)
  38. macro(CHECK_C_SOURCE_COMPILES SOURCE VAR)
  39. if(NOT DEFINED "${VAR}")
  40. set(_FAIL_REGEX)
  41. set(_key)
  42. foreach(arg ${ARGN})
  43. if("${arg}" MATCHES "^(FAIL_REGEX)$")
  44. set(_key "${arg}")
  45. elseif(_key)
  46. list(APPEND _${_key} "${arg}")
  47. else()
  48. message(FATAL_ERROR "Unknown argument:\n ${arg}\n")
  49. endif()
  50. endforeach()
  51. set(MACRO_CHECK_FUNCTION_DEFINITIONS
  52. "-D${VAR} ${CMAKE_REQUIRED_FLAGS}")
  53. if(CMAKE_REQUIRED_LIBRARIES)
  54. set(CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES
  55. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  56. else()
  57. set(CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES)
  58. endif()
  59. if(CMAKE_REQUIRED_INCLUDES)
  60. set(CHECK_C_SOURCE_COMPILES_ADD_INCLUDES
  61. "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
  62. else()
  63. set(CHECK_C_SOURCE_COMPILES_ADD_INCLUDES)
  64. endif()
  65. file(WRITE "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.c"
  66. "${SOURCE}\n")
  67. if(NOT CMAKE_REQUIRED_QUIET)
  68. message(STATUS "Performing Test ${VAR}")
  69. endif()
  70. try_compile(${VAR}
  71. ${CMAKE_BINARY_DIR}
  72. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/src.c
  73. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  74. ${CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES}
  75. CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
  76. "${CHECK_C_SOURCE_COMPILES_ADD_INCLUDES}"
  77. OUTPUT_VARIABLE OUTPUT)
  78. foreach(_regex ${_FAIL_REGEX})
  79. if("${OUTPUT}" MATCHES "${_regex}")
  80. set(${VAR} 0)
  81. endif()
  82. endforeach()
  83. if(${VAR})
  84. set(${VAR} 1 CACHE INTERNAL "Test ${VAR}")
  85. if(NOT CMAKE_REQUIRED_QUIET)
  86. message(STATUS "Performing Test ${VAR} - Success")
  87. endif()
  88. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  89. "Performing C SOURCE FILE Test ${VAR} succeeded with the following output:\n"
  90. "${OUTPUT}\n"
  91. "Source file was:\n${SOURCE}\n")
  92. else()
  93. if(NOT CMAKE_REQUIRED_QUIET)
  94. message(STATUS "Performing Test ${VAR} - Failed")
  95. endif()
  96. set(${VAR} "" CACHE INTERNAL "Test ${VAR}")
  97. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  98. "Performing C SOURCE FILE Test ${VAR} failed with the following output:\n"
  99. "${OUTPUT}\n"
  100. "Source file was:\n${SOURCE}\n")
  101. endif()
  102. endif()
  103. endmacro()