CMakeDetermineCCompiler.cmake 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # determine the compiler to use for C programs
  4. # NOTE, a generator may set CMAKE_C_COMPILER before
  5. # loading this file to force a compiler.
  6. # use environment variable CC first if defined by user, next use
  7. # the cmake variable CMAKE_GENERATOR_CC which can be defined by a generator
  8. # as a default compiler
  9. # If the internal cmake variable _CMAKE_TOOLCHAIN_PREFIX is set, this is used
  10. # as prefix for the tools (e.g. arm-elf-gcc, arm-elf-ar etc.). This works
  11. # currently with the GNU crosscompilers.
  12. #
  13. # Sets the following variables:
  14. # CMAKE_C_COMPILER
  15. # CMAKE_AR
  16. # CMAKE_RANLIB
  17. # CMAKE_COMPILER_IS_GNUCC
  18. #
  19. # If not already set before, it also sets
  20. # _CMAKE_TOOLCHAIN_PREFIX
  21. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompiler.cmake)
  22. # Load system-specific compiler preferences for this language.
  23. include(Platform/${CMAKE_SYSTEM_NAME}-Determine-C OPTIONAL)
  24. include(Platform/${CMAKE_SYSTEM_NAME}-C OPTIONAL)
  25. if(NOT CMAKE_C_COMPILER_NAMES)
  26. set(CMAKE_C_COMPILER_NAMES cc)
  27. endif()
  28. if(${CMAKE_GENERATOR} MATCHES "Visual Studio")
  29. elseif("${CMAKE_GENERATOR}" MATCHES "Green Hills MULTI")
  30. elseif("${CMAKE_GENERATOR}" MATCHES "Xcode")
  31. set(CMAKE_C_COMPILER_XCODE_TYPE sourcecode.c.c)
  32. _cmake_find_compiler_path(C)
  33. else()
  34. if(NOT CMAKE_C_COMPILER)
  35. set(CMAKE_C_COMPILER_INIT NOTFOUND)
  36. # prefer the environment variable CC
  37. if(NOT $ENV{CC} STREQUAL "")
  38. get_filename_component(CMAKE_C_COMPILER_INIT $ENV{CC} PROGRAM PROGRAM_ARGS CMAKE_C_FLAGS_ENV_INIT)
  39. if(CMAKE_C_FLAGS_ENV_INIT)
  40. set(CMAKE_C_COMPILER_ARG1 "${CMAKE_C_FLAGS_ENV_INIT}" CACHE STRING "First argument to C compiler")
  41. endif()
  42. if(NOT EXISTS ${CMAKE_C_COMPILER_INIT})
  43. message(FATAL_ERROR "Could not find compiler set in environment variable CC:\n$ENV{CC}.")
  44. endif()
  45. endif()
  46. # next try prefer the compiler specified by the generator
  47. if(CMAKE_GENERATOR_CC)
  48. if(NOT CMAKE_C_COMPILER_INIT)
  49. set(CMAKE_C_COMPILER_INIT ${CMAKE_GENERATOR_CC})
  50. endif()
  51. endif()
  52. # finally list compilers to try
  53. if(NOT CMAKE_C_COMPILER_INIT)
  54. set(CMAKE_C_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}cc ${_CMAKE_TOOLCHAIN_PREFIX}gcc cl bcc xlc clang)
  55. endif()
  56. _cmake_find_compiler(C)
  57. else()
  58. _cmake_find_compiler_path(C)
  59. endif()
  60. mark_as_advanced(CMAKE_C_COMPILER)
  61. # Each entry in this list is a set of extra flags to try
  62. # adding to the compile line to see if it helps produce
  63. # a valid identification file.
  64. set(CMAKE_C_COMPILER_ID_TEST_FLAGS_FIRST)
  65. set(CMAKE_C_COMPILER_ID_TEST_FLAGS
  66. # Try compiling to an object file only.
  67. "-c"
  68. # Try enabling ANSI mode on HP.
  69. "-Aa"
  70. # Try compiling K&R-compatible code (needed by Bruce C Compiler).
  71. "-D__CLASSIC_C__"
  72. # ARMClang need target options
  73. "--target=arm-arm-none-eabi -mcpu=cortex-m3"
  74. )
  75. endif()
  76. # Build a small source file to identify the compiler.
  77. if(NOT CMAKE_C_COMPILER_ID_RUN)
  78. set(CMAKE_C_COMPILER_ID_RUN 1)
  79. # Try to identify the compiler.
  80. set(CMAKE_C_COMPILER_ID)
  81. set(CMAKE_C_PLATFORM_ID)
  82. file(READ ${CMAKE_ROOT}/Modules/CMakePlatformId.h.in
  83. CMAKE_C_COMPILER_ID_PLATFORM_CONTENT)
  84. # The IAR compiler produces weird output.
  85. # See https://gitlab.kitware.com/cmake/cmake/issues/10176#note_153591
  86. list(APPEND CMAKE_C_COMPILER_ID_VENDORS IAR)
  87. set(CMAKE_C_COMPILER_ID_VENDOR_FLAGS_IAR )
  88. set(CMAKE_C_COMPILER_ID_VENDOR_REGEX_IAR "IAR .+ Compiler")
  89. # Match the link line from xcodebuild output of the form
  90. # Ld ...
  91. # ...
  92. # /path/to/cc ...CompilerIdC/...
  93. # to extract the compiler front-end for the language.
  94. set(CMAKE_C_COMPILER_ID_TOOL_MATCH_REGEX "\nLd[^\n]*(\n[ \t]+[^\n]*)*\n[ \t]+([^ \t\r\n]+)[^\r\n]*-o[^\r\n]*CompilerIdC/(\\./)?(CompilerIdC.(framework|xctest)/)?CompilerIdC[ \t\n\\\"]")
  95. set(CMAKE_C_COMPILER_ID_TOOL_MATCH_INDEX 2)
  96. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake)
  97. CMAKE_DETERMINE_COMPILER_ID(C CFLAGS CMakeCCompilerId.c)
  98. # Set old compiler and platform id variables.
  99. if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
  100. set(CMAKE_COMPILER_IS_GNUCC 1)
  101. endif()
  102. if(CMAKE_C_PLATFORM_ID MATCHES "MinGW")
  103. set(CMAKE_COMPILER_IS_MINGW 1)
  104. elseif(CMAKE_C_PLATFORM_ID MATCHES "Cygwin")
  105. set(CMAKE_COMPILER_IS_CYGWIN 1)
  106. endif()
  107. else()
  108. if(NOT DEFINED CMAKE_C_COMPILER_FRONTEND_VARIANT)
  109. # Some toolchain files set our internal CMAKE_C_COMPILER_ID_RUN
  110. # variable but are not aware of CMAKE_C_COMPILER_FRONTEND_VARIANT.
  111. # They pre-date our support for the GNU-like variant targeting the
  112. # MSVC ABI so we do not consider that here.
  113. if(CMAKE_C_COMPILER_ID STREQUAL "Clang")
  114. if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC")
  115. set(CMAKE_C_COMPILER_FRONTEND_VARIANT "MSVC")
  116. else()
  117. set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
  118. endif()
  119. else()
  120. set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
  121. endif()
  122. endif()
  123. endif()
  124. if (NOT _CMAKE_TOOLCHAIN_LOCATION)
  125. get_filename_component(_CMAKE_TOOLCHAIN_LOCATION "${CMAKE_C_COMPILER}" PATH)
  126. endif ()
  127. # If we have a gcc cross compiler, they have usually some prefix, like
  128. # e.g. powerpc-linux-gcc, arm-elf-gcc or i586-mingw32msvc-gcc, optionally
  129. # with a 3-component version number at the end (e.g. arm-eabi-gcc-4.5.2).
  130. # The other tools of the toolchain usually have the same prefix
  131. # NAME_WE cannot be used since then this test will fail for names like
  132. # "arm-unknown-nto-qnx6.3.0-gcc.exe", where BASENAME would be
  133. # "arm-unknown-nto-qnx6" instead of the correct "arm-unknown-nto-qnx6.3.0-"
  134. if (CMAKE_CROSSCOMPILING AND NOT _CMAKE_TOOLCHAIN_PREFIX)
  135. if(CMAKE_C_COMPILER_ID MATCHES "GNU|Clang|QCC")
  136. get_filename_component(COMPILER_BASENAME "${CMAKE_C_COMPILER}" NAME)
  137. if (COMPILER_BASENAME MATCHES "^(.+-)(clang|g?cc)(-[0-9]+(\\.[0-9]+)*)?(-[^.]+)?(\\.exe)?$")
  138. set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1})
  139. set(_CMAKE_COMPILER_SUFFIX ${CMAKE_MATCH_5})
  140. elseif(CMAKE_C_COMPILER_ID MATCHES "Clang")
  141. if(CMAKE_C_COMPILER_TARGET)
  142. set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_C_COMPILER_TARGET}-)
  143. endif()
  144. elseif(COMPILER_BASENAME MATCHES "qcc(\\.exe)?$")
  145. if(CMAKE_C_COMPILER_TARGET MATCHES "gcc_nto([a-z0-9]+_[0-9]+|[^_le]+)(le)?")
  146. set(_CMAKE_TOOLCHAIN_PREFIX nto${CMAKE_MATCH_1}-)
  147. endif()
  148. endif ()
  149. # if "llvm-" is part of the prefix, remove it, since llvm doesn't have its own binutils
  150. # but uses the regular ar, objcopy, etc. (instead of llvm-objcopy etc.)
  151. if ("${_CMAKE_TOOLCHAIN_PREFIX}" MATCHES "(.+-)?llvm-$")
  152. set(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1})
  153. endif ()
  154. elseif(CMAKE_C_COMPILER_ID MATCHES "TI")
  155. # TI compilers are named e.g. cl6x, cl470 or armcl.exe
  156. get_filename_component(COMPILER_BASENAME "${CMAKE_C_COMPILER}" NAME)
  157. if (COMPILER_BASENAME MATCHES "^(.+)?cl([^.]+)?(\\.exe)?$")
  158. set(_CMAKE_TOOLCHAIN_PREFIX "${CMAKE_MATCH_1}")
  159. set(_CMAKE_TOOLCHAIN_SUFFIX "${CMAKE_MATCH_2}")
  160. endif ()
  161. endif()
  162. endif ()
  163. set(_CMAKE_PROCESSING_LANGUAGE "C")
  164. include(CMakeFindBinUtils)
  165. include(Compiler/${CMAKE_C_COMPILER_ID}-FindBinUtils OPTIONAL)
  166. unset(_CMAKE_PROCESSING_LANGUAGE)
  167. if(CMAKE_C_COMPILER_ARCHITECTURE_ID)
  168. set(_SET_CMAKE_C_COMPILER_ARCHITECTURE_ID
  169. "set(CMAKE_C_COMPILER_ARCHITECTURE_ID ${CMAKE_C_COMPILER_ARCHITECTURE_ID})")
  170. else()
  171. set(_SET_CMAKE_C_COMPILER_ARCHITECTURE_ID "")
  172. endif()
  173. if(MSVC_C_ARCHITECTURE_ID)
  174. set(SET_MSVC_C_ARCHITECTURE_ID
  175. "set(MSVC_C_ARCHITECTURE_ID ${MSVC_C_ARCHITECTURE_ID})")
  176. endif()
  177. if(CMAKE_C_XCODE_ARCHS)
  178. set(SET_CMAKE_XCODE_ARCHS
  179. "set(CMAKE_XCODE_ARCHS \"${CMAKE_C_XCODE_ARCHS}\")")
  180. endif()
  181. # configure variables set in this file for fast reload later on
  182. configure_file(${CMAKE_ROOT}/Modules/CMakeCCompiler.cmake.in
  183. ${CMAKE_PLATFORM_INFO_DIR}/CMakeCCompiler.cmake
  184. @ONLY
  185. )
  186. set(CMAKE_C_COMPILER_ENV_VAR "CC")