CMakeDetermineCompiler.cmake 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. #=============================================================================
  2. # Copyright 2004-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. macro(_cmake_find_compiler lang)
  14. # Use already-enabled languages for reference.
  15. get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES)
  16. list(REMOVE_ITEM _languages "${lang}")
  17. if(CMAKE_${lang}_COMPILER_INIT)
  18. # Search only for the specified compiler.
  19. set(CMAKE_${lang}_COMPILER_LIST "${CMAKE_${lang}_COMPILER_INIT}")
  20. else()
  21. # Re-order the compiler list with preferred vendors first.
  22. set(_${lang}_COMPILER_LIST "${CMAKE_${lang}_COMPILER_LIST}")
  23. set(CMAKE_${lang}_COMPILER_LIST "")
  24. # Prefer vendors of compilers from reference languages.
  25. foreach(l ${_languages})
  26. list(APPEND CMAKE_${lang}_COMPILER_LIST
  27. ${_${lang}_COMPILER_NAMES_${CMAKE_${l}_COMPILER_ID}})
  28. endforeach()
  29. # Prefer vendors based on the platform.
  30. list(APPEND CMAKE_${lang}_COMPILER_LIST ${CMAKE_${lang}_COMPILER_NAMES})
  31. # Append the rest of the list and remove duplicates.
  32. list(APPEND CMAKE_${lang}_COMPILER_LIST ${_${lang}_COMPILER_LIST})
  33. unset(_${lang}_COMPILER_LIST)
  34. list(REMOVE_DUPLICATES CMAKE_${lang}_COMPILER_LIST)
  35. if(CMAKE_${lang}_COMPILER_EXCLUDE)
  36. list(REMOVE_ITEM CMAKE_${lang}_COMPILER_LIST
  37. ${CMAKE_${lang}_COMPILER_EXCLUDE})
  38. endif()
  39. endif()
  40. # Look for directories containing compilers of reference languages.
  41. set(_${lang}_COMPILER_HINTS)
  42. foreach(l ${_languages})
  43. if(CMAKE_${l}_COMPILER AND IS_ABSOLUTE "${CMAKE_${l}_COMPILER}")
  44. get_filename_component(_hint "${CMAKE_${l}_COMPILER}" PATH)
  45. if(IS_DIRECTORY "${_hint}")
  46. list(APPEND _${lang}_COMPILER_HINTS "${_hint}")
  47. endif()
  48. unset(_hint)
  49. endif()
  50. endforeach()
  51. # Find the compiler.
  52. if(_${lang}_COMPILER_HINTS)
  53. # Prefer directories containing compilers of reference languages.
  54. list(REMOVE_DUPLICATES _${lang}_COMPILER_HINTS)
  55. find_program(CMAKE_${lang}_COMPILER
  56. NAMES ${CMAKE_${lang}_COMPILER_LIST}
  57. PATHS ${_${lang}_COMPILER_HINTS}
  58. NO_DEFAULT_PATH
  59. DOC "${lang} compiler")
  60. endif()
  61. find_program(CMAKE_${lang}_COMPILER NAMES ${CMAKE_${lang}_COMPILER_LIST} DOC "${lang} compiler")
  62. if(CMAKE_${lang}_COMPILER_INIT AND NOT CMAKE_${lang}_COMPILER)
  63. set_property(CACHE CMAKE_${lang}_COMPILER PROPERTY VALUE "${CMAKE_${lang}_COMPILER_INIT}")
  64. endif()
  65. unset(_${lang}_COMPILER_HINTS)
  66. unset(_languages)
  67. # Look for a make tool provided by Xcode
  68. if(CMAKE_HOST_APPLE)
  69. macro(_query_xcrun compiler_name result_var_keyword result_var)
  70. if(NOT "x${result_var_keyword}" STREQUAL "xRESULT_VAR")
  71. message(FATAL_ERROR "Bad arguments to macro")
  72. endif()
  73. execute_process(COMMAND xcrun --find ${compiler_name}
  74. OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE
  75. ERROR_VARIABLE _xcrun_err)
  76. set("${result_var}" "${_xcrun_out}")
  77. endmacro()
  78. set(xcrun_result)
  79. if (CMAKE_${lang}_COMPILER MATCHES "^/usr/bin/(.+)$")
  80. _query_xcrun("${CMAKE_MATCH_1}" RESULT_VAR xcrun_result)
  81. elseif (CMAKE_${lang}_COMPILER STREQUAL "CMAKE_${lang}_COMPILER-NOTFOUND")
  82. foreach(comp ${CMAKE_${lang}_COMPILER_LIST})
  83. _query_xcrun("${comp}" RESULT_VAR xcrun_result)
  84. if(xcrun_result)
  85. break()
  86. endif()
  87. endforeach()
  88. endif()
  89. if (xcrun_result)
  90. set_property(CACHE CMAKE_${lang}_COMPILER PROPERTY VALUE "${xcrun_result}")
  91. endif()
  92. endif()
  93. endmacro()
  94. macro(_cmake_find_compiler_path lang)
  95. if(CMAKE_${lang}_COMPILER)
  96. # we only get here if CMAKE_${lang}_COMPILER was specified using -D or a pre-made CMakeCache.txt
  97. # (e.g. via ctest) or set in CMAKE_TOOLCHAIN_FILE
  98. # if CMAKE_${lang}_COMPILER is a list of length 2, use the first item as
  99. # CMAKE_${lang}_COMPILER and the 2nd one as CMAKE_${lang}_COMPILER_ARG1
  100. list(LENGTH CMAKE_${lang}_COMPILER _CMAKE_${lang}_COMPILER_LIST_LENGTH)
  101. if("${_CMAKE_${lang}_COMPILER_LIST_LENGTH}" EQUAL 2)
  102. list(GET CMAKE_${lang}_COMPILER 1 CMAKE_${lang}_COMPILER_ARG1)
  103. list(GET CMAKE_${lang}_COMPILER 0 CMAKE_${lang}_COMPILER)
  104. endif()
  105. unset(_CMAKE_${lang}_COMPILER_LIST_LENGTH)
  106. # find the compiler in the PATH if necessary
  107. get_filename_component(_CMAKE_USER_${lang}_COMPILER_PATH "${CMAKE_${lang}_COMPILER}" PATH)
  108. if(NOT _CMAKE_USER_${lang}_COMPILER_PATH)
  109. find_program(CMAKE_${lang}_COMPILER_WITH_PATH NAMES ${CMAKE_${lang}_COMPILER})
  110. if(CMAKE_${lang}_COMPILER_WITH_PATH)
  111. set(CMAKE_${lang}_COMPILER ${CMAKE_${lang}_COMPILER_WITH_PATH})
  112. get_property(_CMAKE_${lang}_COMPILER_CACHED CACHE CMAKE_${lang}_COMPILER PROPERTY TYPE)
  113. if(_CMAKE_${lang}_COMPILER_CACHED)
  114. set(CMAKE_${lang}_COMPILER "${CMAKE_${lang}_COMPILER}" CACHE STRING "${lang} compiler" FORCE)
  115. endif()
  116. unset(_CMAKE_${lang}_COMPILER_CACHED)
  117. endif()
  118. unset(CMAKE_${lang}_COMPILER_WITH_PATH CACHE)
  119. endif()
  120. endif()
  121. endmacro()