CheckSymbolExists.cmake 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #.rst:
  2. # CheckSymbolExists
  3. # -----------------
  4. #
  5. # Check if a symbol exists as a function, variable, or macro
  6. #
  7. # CHECK_SYMBOL_EXISTS(<symbol> <files> <variable>)
  8. #
  9. # Check that the <symbol> is available after including given header
  10. # <files> and store the result in a <variable>. Specify the list of
  11. # files in one argument as a semicolon-separated list.
  12. # <variable> will be created as an internal cache variable.
  13. #
  14. # If the header files define the symbol as a macro it is considered
  15. # available and assumed to work. If the header files declare the symbol
  16. # as a function or variable then the symbol must also be available for
  17. # linking. If the symbol is a type or enum value it will not be
  18. # recognized (consider using CheckTypeSize or CheckCSourceCompiles). If
  19. # the check needs to be done in C++, consider using
  20. # CHECK_CXX_SYMBOL_EXISTS(), which does the same as
  21. # CHECK_SYMBOL_EXISTS(), but in C++.
  22. #
  23. # The following variables may be set before calling this macro to modify
  24. # the way the check is run:
  25. #
  26. # ::
  27. #
  28. # CMAKE_REQUIRED_FLAGS = string of compile command line flags
  29. # CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
  30. # CMAKE_REQUIRED_INCLUDES = list of include directories
  31. # CMAKE_REQUIRED_LIBRARIES = list of libraries to link
  32. # CMAKE_REQUIRED_QUIET = execute quietly without messages
  33. #=============================================================================
  34. # Copyright 2003-2011 Kitware, Inc.
  35. #
  36. # Distributed under the OSI-approved BSD License (the "License");
  37. # see accompanying file Copyright.txt for details.
  38. #
  39. # This software is distributed WITHOUT ANY WARRANTY; without even the
  40. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  41. # See the License for more information.
  42. #=============================================================================
  43. # (To distribute this file outside of CMake, substitute the full
  44. # License text for the above reference.)
  45. macro(CHECK_SYMBOL_EXISTS SYMBOL FILES VARIABLE)
  46. if(CMAKE_C_COMPILER_LOADED)
  47. _CHECK_SYMBOL_EXISTS("${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckSymbolExists.c" "${SYMBOL}" "${FILES}" "${VARIABLE}" )
  48. elseif(CMAKE_CXX_COMPILER_LOADED)
  49. _CHECK_SYMBOL_EXISTS("${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckSymbolExists.cxx" "${SYMBOL}" "${FILES}" "${VARIABLE}" )
  50. else()
  51. message(FATAL_ERROR "CHECK_SYMBOL_EXISTS needs either C or CXX language enabled")
  52. endif()
  53. endmacro()
  54. macro(_CHECK_SYMBOL_EXISTS SOURCEFILE SYMBOL FILES VARIABLE)
  55. if(NOT DEFINED "${VARIABLE}" OR "x${${VARIABLE}}" STREQUAL "x${VARIABLE}")
  56. set(CMAKE_CONFIGURABLE_FILE_CONTENT "/* */\n")
  57. set(MACRO_CHECK_SYMBOL_EXISTS_FLAGS ${CMAKE_REQUIRED_FLAGS})
  58. if(CMAKE_REQUIRED_LIBRARIES)
  59. set(CHECK_SYMBOL_EXISTS_LIBS
  60. LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
  61. else()
  62. set(CHECK_SYMBOL_EXISTS_LIBS)
  63. endif()
  64. if(CMAKE_REQUIRED_INCLUDES)
  65. set(CMAKE_SYMBOL_EXISTS_INCLUDES
  66. "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}")
  67. else()
  68. set(CMAKE_SYMBOL_EXISTS_INCLUDES)
  69. endif()
  70. foreach(FILE ${FILES})
  71. set(CMAKE_CONFIGURABLE_FILE_CONTENT
  72. "${CMAKE_CONFIGURABLE_FILE_CONTENT}#include <${FILE}>\n")
  73. endforeach()
  74. set(CMAKE_CONFIGURABLE_FILE_CONTENT
  75. "${CMAKE_CONFIGURABLE_FILE_CONTENT}\nint main(int argc, char** argv)\n{\n (void)argv;\n#ifndef ${SYMBOL}\n return ((int*)(&${SYMBOL}))[argc];\n#else\n (void)argc;\n return 0;\n#endif\n}\n")
  76. configure_file("${CMAKE_ROOT}/Modules/CMakeConfigurableFile.in"
  77. "${SOURCEFILE}" @ONLY)
  78. if(NOT CMAKE_REQUIRED_QUIET)
  79. message(STATUS "Looking for ${SYMBOL}")
  80. endif()
  81. try_compile(${VARIABLE}
  82. ${CMAKE_BINARY_DIR}
  83. "${SOURCEFILE}"
  84. COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
  85. ${CHECK_SYMBOL_EXISTS_LIBS}
  86. CMAKE_FLAGS
  87. -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_SYMBOL_EXISTS_FLAGS}
  88. "${CMAKE_SYMBOL_EXISTS_INCLUDES}"
  89. OUTPUT_VARIABLE OUTPUT)
  90. if(${VARIABLE})
  91. if(NOT CMAKE_REQUIRED_QUIET)
  92. message(STATUS "Looking for ${SYMBOL} - found")
  93. endif()
  94. set(${VARIABLE} 1 CACHE INTERNAL "Have symbol ${SYMBOL}")
  95. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  96. "Determining if the ${SYMBOL} "
  97. "exist passed with the following output:\n"
  98. "${OUTPUT}\nFile ${SOURCEFILE}:\n"
  99. "${CMAKE_CONFIGURABLE_FILE_CONTENT}\n")
  100. else()
  101. if(NOT CMAKE_REQUIRED_QUIET)
  102. message(STATUS "Looking for ${SYMBOL} - not found")
  103. endif()
  104. set(${VARIABLE} "" CACHE INTERNAL "Have symbol ${SYMBOL}")
  105. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  106. "Determining if the ${SYMBOL} "
  107. "exist failed with the following output:\n"
  108. "${OUTPUT}\nFile ${SOURCEFILE}:\n"
  109. "${CMAKE_CONFIGURABLE_FILE_CONTENT}\n")
  110. endif()
  111. endif()
  112. endmacro()