CMakeDetermineCompilerId.cmake 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. #=============================================================================
  2. # Copyright 2007-2009 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. # Function to compile a source file to identify the compiler. This is
  14. # used internally by CMake and should not be included by user code.
  15. # If successful, sets CMAKE_<lang>_COMPILER_ID and CMAKE_<lang>_PLATFORM_ID
  16. function(CMAKE_DETERMINE_COMPILER_ID lang flagvar src)
  17. # Make sure the compiler arguments are clean.
  18. string(STRIP "${CMAKE_${lang}_COMPILER_ARG1}" CMAKE_${lang}_COMPILER_ID_ARG1)
  19. string(REGEX REPLACE " +" ";" CMAKE_${lang}_COMPILER_ID_ARG1 "${CMAKE_${lang}_COMPILER_ID_ARG1}")
  20. # Make sure user-specified compiler flags are used.
  21. if(CMAKE_${lang}_FLAGS)
  22. set(CMAKE_${lang}_COMPILER_ID_FLAGS ${CMAKE_${lang}_FLAGS})
  23. else()
  24. set(CMAKE_${lang}_COMPILER_ID_FLAGS $ENV{${flagvar}})
  25. endif()
  26. string(REPLACE " " ";" CMAKE_${lang}_COMPILER_ID_FLAGS_LIST "${CMAKE_${lang}_COMPILER_ID_FLAGS}")
  27. # Compute the directory in which to run the test.
  28. set(CMAKE_${lang}_COMPILER_ID_DIR ${CMAKE_PLATFORM_INFO_DIR}/CompilerId${lang})
  29. # Try building with no extra flags and then try each set
  30. # of helper flags. Stop when the compiler is identified.
  31. foreach(flags ${CMAKE_${lang}_COMPILER_ID_TEST_FLAGS_FIRST}
  32. ""
  33. ${CMAKE_${lang}_COMPILER_ID_TEST_FLAGS})
  34. CMAKE_DETERMINE_COMPILER_ID_BUILD("${lang}" "${flags}" "${src}")
  35. CMAKE_DETERMINE_COMPILER_ID_MATCH_VENDOR("${lang}" "${COMPILER_${lang}_PRODUCED_OUTPUT}")
  36. if(CMAKE_${lang}_COMPILER_ID)
  37. break()
  38. endif()
  39. foreach(file ${COMPILER_${lang}_PRODUCED_FILES})
  40. CMAKE_DETERMINE_COMPILER_ID_CHECK("${lang}" "${CMAKE_${lang}_COMPILER_ID_DIR}/${file}" "${src}")
  41. endforeach()
  42. if(CMAKE_${lang}_COMPILER_ID)
  43. break()
  44. endif()
  45. endforeach()
  46. # If the compiler is still unknown, try to query its vendor.
  47. if(CMAKE_${lang}_COMPILER AND NOT CMAKE_${lang}_COMPILER_ID)
  48. CMAKE_DETERMINE_COMPILER_ID_VENDOR(${lang})
  49. endif()
  50. if (COMPILER_QNXNTO AND CMAKE_${lang}_COMPILER_ID STREQUAL "GNU")
  51. execute_process(
  52. COMMAND "${CMAKE_${lang}_COMPILER}"
  53. -V
  54. OUTPUT_VARIABLE output ERROR_VARIABLE output
  55. RESULT_VARIABLE result
  56. TIMEOUT 10
  57. )
  58. if (output MATCHES "targets available")
  59. set(CMAKE_${lang}_COMPILER_ID QCC)
  60. # http://community.qnx.com/sf/discussion/do/listPosts/projects.community/discussion.qnx_momentics_community_support.topc3555?_pagenum=2
  61. # The qcc driver does not itself have a version.
  62. endif()
  63. endif()
  64. # if the format is unknown after all files have been checked, put "Unknown" in the cache
  65. if(NOT CMAKE_EXECUTABLE_FORMAT)
  66. set(CMAKE_EXECUTABLE_FORMAT "Unknown" CACHE INTERNAL "Executable file format")
  67. endif()
  68. if(CMAKE_GENERATOR STREQUAL "Ninja" AND MSVC_${lang}_ARCHITECTURE_ID)
  69. CMAKE_DETERMINE_MSVC_SHOWINCLUDES_PREFIX(${lang})
  70. else()
  71. set(CMAKE_${lang}_CL_SHOWINCLUDES_PREFIX "")
  72. endif()
  73. # Display the final identification result.
  74. if(CMAKE_${lang}_COMPILER_ID)
  75. if(CMAKE_${lang}_COMPILER_VERSION)
  76. set(_version " ${CMAKE_${lang}_COMPILER_VERSION}")
  77. else()
  78. set(_version "")
  79. endif()
  80. message(STATUS "The ${lang} compiler identification is "
  81. "${CMAKE_${lang}_COMPILER_ID}${_version}")
  82. else()
  83. message(STATUS "The ${lang} compiler identification is unknown")
  84. endif()
  85. # Check if compiler id detection gave us the compiler tool.
  86. if(CMAKE_${lang}_COMPILER_ID_TOOL)
  87. set(CMAKE_${lang}_COMPILER "${CMAKE_${lang}_COMPILER_ID_TOOL}" PARENT_SCOPE)
  88. elseif(NOT CMAKE_${lang}_COMPILER)
  89. set(CMAKE_${lang}_COMPILER "CMAKE_${lang}_COMPILER-NOTFOUND" PARENT_SCOPE)
  90. endif()
  91. set(CMAKE_${lang}_COMPILER_ID "${CMAKE_${lang}_COMPILER_ID}" PARENT_SCOPE)
  92. set(CMAKE_${lang}_PLATFORM_ID "${CMAKE_${lang}_PLATFORM_ID}" PARENT_SCOPE)
  93. set(MSVC_${lang}_ARCHITECTURE_ID "${MSVC_${lang}_ARCHITECTURE_ID}"
  94. PARENT_SCOPE)
  95. set(CMAKE_${lang}_CL_SHOWINCLUDES_PREFIX "${CMAKE_${lang}_CL_SHOWINCLUDES_PREFIX}" PARENT_SCOPE)
  96. set(CMAKE_${lang}_COMPILER_VERSION "${CMAKE_${lang}_COMPILER_VERSION}" PARENT_SCOPE)
  97. set(CMAKE_${lang}_COMPILER_WRAPPER "${CMAKE_${lang}_COMPILER_WRAPPER}" PARENT_SCOPE)
  98. set(CMAKE_${lang}_SIMULATE_ID "${CMAKE_${lang}_SIMULATE_ID}" PARENT_SCOPE)
  99. set(CMAKE_${lang}_SIMULATE_VERSION "${CMAKE_${lang}_SIMULATE_VERSION}" PARENT_SCOPE)
  100. set(CMAKE_${lang}_STANDARD_COMPUTED_DEFAULT "${CMAKE_${lang}_STANDARD_COMPUTED_DEFAULT}" PARENT_SCOPE)
  101. endfunction()
  102. include(CMakeCompilerIdDetection)
  103. #-----------------------------------------------------------------------------
  104. # Function to write the compiler id source file.
  105. function(CMAKE_DETERMINE_COMPILER_ID_WRITE lang src)
  106. find_file(src_in ${src}.in PATHS ${CMAKE_ROOT}/Modules ${CMAKE_MODULE_PATH} NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH)
  107. file(READ ${src_in} ID_CONTENT_IN)
  108. compiler_id_detection(CMAKE_${lang}_COMPILER_ID_CONTENT ${lang}
  109. ID_STRING
  110. VERSION_STRINGS
  111. PLATFORM_DEFAULT_COMPILER
  112. )
  113. unset(src_in CACHE)
  114. string(CONFIGURE "${ID_CONTENT_IN}" ID_CONTENT_OUT @ONLY)
  115. file(WRITE ${CMAKE_${lang}_COMPILER_ID_DIR}/${src} "${ID_CONTENT_OUT}")
  116. endfunction()
  117. #-----------------------------------------------------------------------------
  118. # Function to build the compiler id source file and look for output
  119. # files.
  120. function(CMAKE_DETERMINE_COMPILER_ID_BUILD lang testflags src)
  121. # Create a clean working directory.
  122. file(REMOVE_RECURSE ${CMAKE_${lang}_COMPILER_ID_DIR})
  123. file(MAKE_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR})
  124. CMAKE_DETERMINE_COMPILER_ID_WRITE("${lang}" "${src}")
  125. # Construct a description of this test case.
  126. set(COMPILER_DESCRIPTION
  127. "Compiler: ${CMAKE_${lang}_COMPILER} ${CMAKE_${lang}_COMPILER_ID_ARG1}
  128. Build flags: ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST}
  129. Id flags: ${testflags}
  130. ")
  131. # Compile the compiler identification source.
  132. if("${CMAKE_GENERATOR}" MATCHES "Visual Studio ([0-9]+)")
  133. set(vs_version ${CMAKE_MATCH_1})
  134. set(id_platform ${CMAKE_VS_PLATFORM_NAME})
  135. set(id_lang "${lang}")
  136. if(CMAKE_VS_PLATFORM_TOOLSET MATCHES "v[0-9]+_clang_.*")
  137. set(id_cl clang.exe)
  138. else()
  139. set(id_cl cl.exe)
  140. endif()
  141. if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android")
  142. set(v NsightTegra)
  143. set(ext vcxproj)
  144. if(lang STREQUAL CXX)
  145. set(id_gcc g++)
  146. set(id_clang clang++)
  147. else()
  148. set(id_gcc gcc)
  149. set(id_clang clang)
  150. endif()
  151. elseif(lang STREQUAL Fortran)
  152. set(v Intel)
  153. set(ext vfproj)
  154. set(id_cl ifort.exe)
  155. elseif(NOT "${vs_version}" VERSION_LESS 10)
  156. set(v 10)
  157. set(ext vcxproj)
  158. else()
  159. set(id_version ${vs_version}.00)
  160. set(v 7)
  161. set(ext vcproj)
  162. endif()
  163. if(CMAKE_VS_PLATFORM_TOOLSET)
  164. if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android")
  165. set(id_toolset "<NdkToolchainVersion>${CMAKE_VS_PLATFORM_TOOLSET}</NdkToolchainVersion>")
  166. else()
  167. set(id_toolset "<PlatformToolset>${CMAKE_VS_PLATFORM_TOOLSET}</PlatformToolset>")
  168. if(CMAKE_VS_PLATFORM_TOOLSET MATCHES "Intel")
  169. set(id_cl icl.exe)
  170. endif()
  171. endif()
  172. else()
  173. set(id_toolset "")
  174. endif()
  175. if(CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone")
  176. set(id_system "<ApplicationType>Windows Phone</ApplicationType>")
  177. elseif(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
  178. set(id_system "<ApplicationType>Windows Store</ApplicationType>")
  179. else()
  180. set(id_system "")
  181. endif()
  182. if(id_system AND CMAKE_SYSTEM_VERSION)
  183. set(id_system_version "<ApplicationTypeRevision>${CMAKE_SYSTEM_VERSION}</ApplicationTypeRevision>")
  184. else()
  185. set(id_system_version "")
  186. endif()
  187. if(CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION)
  188. set(id_WindowsTargetPlatformVersion "<WindowsTargetPlatformVersion>${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}</WindowsTargetPlatformVersion>")
  189. endif()
  190. if(id_platform STREQUAL ARM)
  191. set(id_WindowsSDKDesktopARMSupport "<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>")
  192. else()
  193. set(id_WindowsSDKDesktopARMSupport "")
  194. endif()
  195. if(CMAKE_VS_WINCE_VERSION)
  196. set(id_entrypoint "mainACRTStartup")
  197. if("${vs_version}" VERSION_LESS 9)
  198. set(id_subsystem 9)
  199. else()
  200. set(id_subsystem 8)
  201. endif()
  202. else()
  203. set(id_subsystem 1)
  204. endif()
  205. set(id_dir ${CMAKE_${lang}_COMPILER_ID_DIR})
  206. set(id_src "${src}")
  207. configure_file(${CMAKE_ROOT}/Modules/CompilerId/VS-${v}.${ext}.in
  208. ${id_dir}/CompilerId${lang}.${ext} @ONLY)
  209. if(CMAKE_VS_MSBUILD_COMMAND AND NOT lang STREQUAL "Fortran")
  210. set(command "${CMAKE_VS_MSBUILD_COMMAND}" "CompilerId${lang}.${ext}"
  211. "/p:Configuration=Debug" "/p:Platform=${id_platform}" "/p:VisualStudioVersion=${vs_version}.0"
  212. )
  213. elseif(CMAKE_VS_DEVENV_COMMAND)
  214. set(command "${CMAKE_VS_DEVENV_COMMAND}" "CompilerId${lang}.${ext}" "/build" "Debug")
  215. else()
  216. set(command "")
  217. endif()
  218. if(command)
  219. execute_process(
  220. COMMAND ${command}
  221. WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}
  222. OUTPUT_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  223. ERROR_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  224. RESULT_VARIABLE CMAKE_${lang}_COMPILER_ID_RESULT
  225. )
  226. else()
  227. set(CMAKE_${lang}_COMPILER_ID_RESULT 1)
  228. set(CMAKE_${lang}_COMPILER_ID_OUTPUT "VS environment not known to support ${lang}")
  229. endif()
  230. # Match the compiler location line printed out.
  231. if("${CMAKE_${lang}_COMPILER_ID_OUTPUT}" MATCHES "CMAKE_${lang}_COMPILER=([^%\r\n]+)[\r\n]")
  232. # Strip VS diagnostic output from the end of the line.
  233. string(REGEX REPLACE " \\(TaskId:[0-9]*\\)$" "" _comp "${CMAKE_MATCH_1}")
  234. if(EXISTS "${_comp}")
  235. file(TO_CMAKE_PATH "${_comp}" _comp)
  236. set(CMAKE_${lang}_COMPILER_ID_TOOL "${_comp}" PARENT_SCOPE)
  237. endif()
  238. endif()
  239. elseif("${CMAKE_GENERATOR}" MATCHES "Xcode")
  240. set(id_lang "${lang}")
  241. set(id_type ${CMAKE_${lang}_COMPILER_XCODE_TYPE})
  242. set(id_dir ${CMAKE_${lang}_COMPILER_ID_DIR})
  243. set(id_src "${src}")
  244. if(CMAKE_XCODE_PLATFORM_TOOLSET)
  245. set(id_toolset "GCC_VERSION = ${CMAKE_XCODE_PLATFORM_TOOLSET};")
  246. else()
  247. set(id_toolset "")
  248. endif()
  249. if(CMAKE_OSX_DEPLOYMENT_TARGET)
  250. set(id_deployment_target
  251. "MACOSX_DEPLOYMENT_TARGET = \"${CMAKE_OSX_DEPLOYMENT_TARGET}\";")
  252. else()
  253. set(id_deployment_target "")
  254. endif()
  255. set(id_product_type "com.apple.product-type.tool")
  256. if(CMAKE_OSX_SYSROOT)
  257. set(id_sdkroot "SDKROOT = \"${CMAKE_OSX_SYSROOT}\";")
  258. if(CMAKE_OSX_SYSROOT MATCHES "(^|/)[Ii][Pp][Hh][Oo][Nn][Ee]")
  259. set(id_product_type "com.apple.product-type.bundle.unit-test")
  260. endif()
  261. else()
  262. set(id_sdkroot "")
  263. endif()
  264. if(NOT ${XCODE_VERSION} VERSION_LESS 3)
  265. set(v 3)
  266. set(ext xcodeproj)
  267. elseif(NOT ${XCODE_VERSION} VERSION_LESS 2)
  268. set(v 2)
  269. set(ext xcodeproj)
  270. else()
  271. set(v 1)
  272. set(ext xcode)
  273. endif()
  274. configure_file(${CMAKE_ROOT}/Modules/CompilerId/Xcode-${v}.pbxproj.in
  275. ${id_dir}/CompilerId${lang}.${ext}/project.pbxproj @ONLY)
  276. unset(_ENV_MACOSX_DEPLOYMENT_TARGET)
  277. if(DEFINED ENV{MACOSX_DEPLOYMENT_TARGET})
  278. set(_ENV_MACOSX_DEPLOYMENT_TARGET "$ENV{MACOSX_DEPLOYMENT_TARGET}")
  279. set(ENV{MACOSX_DEPLOYMENT_TARGET} "")
  280. endif()
  281. execute_process(COMMAND xcodebuild
  282. WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}
  283. OUTPUT_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  284. ERROR_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  285. RESULT_VARIABLE CMAKE_${lang}_COMPILER_ID_RESULT
  286. )
  287. if(DEFINED _ENV_MACOSX_DEPLOYMENT_TARGET)
  288. set(ENV{MACOSX_DEPLOYMENT_TARGET} "${_ENV_MACOSX_DEPLOYMENT_TARGET}")
  289. endif()
  290. if(DEFINED CMAKE_${lang}_COMPILER_ID_TOOL_MATCH_REGEX)
  291. if("${CMAKE_${lang}_COMPILER_ID_OUTPUT}" MATCHES "${CMAKE_${lang}_COMPILER_ID_TOOL_MATCH_REGEX}")
  292. set(_comp "${CMAKE_MATCH_${CMAKE_${lang}_COMPILER_ID_TOOL_MATCH_INDEX}}")
  293. if(EXISTS "${_comp}")
  294. set(CMAKE_${lang}_COMPILER_ID_TOOL "${_comp}" PARENT_SCOPE)
  295. endif()
  296. endif()
  297. endif()
  298. else()
  299. execute_process(
  300. COMMAND "${CMAKE_${lang}_COMPILER}"
  301. ${CMAKE_${lang}_COMPILER_ID_ARG1}
  302. ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST}
  303. ${testflags}
  304. "${src}"
  305. WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}
  306. OUTPUT_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  307. ERROR_VARIABLE CMAKE_${lang}_COMPILER_ID_OUTPUT
  308. RESULT_VARIABLE CMAKE_${lang}_COMPILER_ID_RESULT
  309. )
  310. endif()
  311. # Check the result of compilation.
  312. if(CMAKE_${lang}_COMPILER_ID_RESULT
  313. # Intel Fortran warns and ignores preprocessor lines without /fpp
  314. OR CMAKE_${lang}_COMPILER_ID_OUTPUT MATCHES "Bad # preprocessor line"
  315. )
  316. # Compilation failed.
  317. set(MSG
  318. "Compiling the ${lang} compiler identification source file \"${src}\" failed.
  319. ${COMPILER_DESCRIPTION}
  320. The output was:
  321. ${CMAKE_${lang}_COMPILER_ID_RESULT}
  322. ${CMAKE_${lang}_COMPILER_ID_OUTPUT}
  323. ")
  324. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log "${MSG}")
  325. #if(NOT CMAKE_${lang}_COMPILER_ID_ALLOW_FAIL)
  326. # message(FATAL_ERROR "${MSG}")
  327. #endif()
  328. # No output files should be inspected.
  329. set(COMPILER_${lang}_PRODUCED_FILES)
  330. set(COMPILER_${lang}_PRODUCED_OUTPUT)
  331. else()
  332. # Compilation succeeded.
  333. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  334. "Compiling the ${lang} compiler identification source file \"${src}\" succeeded.
  335. ${COMPILER_DESCRIPTION}
  336. The output was:
  337. ${CMAKE_${lang}_COMPILER_ID_RESULT}
  338. ${CMAKE_${lang}_COMPILER_ID_OUTPUT}
  339. ")
  340. # Find the executable produced by the compiler, try all files in the
  341. # binary dir.
  342. file(GLOB files
  343. RELATIVE ${CMAKE_${lang}_COMPILER_ID_DIR}
  344. # normal case
  345. ${CMAKE_${lang}_COMPILER_ID_DIR}/*
  346. # com.apple.package-type.bundle.unit-test
  347. ${CMAKE_${lang}_COMPILER_ID_DIR}/*.xctest/*
  348. )
  349. list(REMOVE_ITEM files "${src}")
  350. set(COMPILER_${lang}_PRODUCED_FILES "")
  351. foreach(file ${files})
  352. if(NOT IS_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}/${file})
  353. list(APPEND COMPILER_${lang}_PRODUCED_FILES ${file})
  354. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  355. "Compilation of the ${lang} compiler identification source \""
  356. "${src}\" produced \"${file}\"\n\n")
  357. endif()
  358. endforeach()
  359. if(NOT COMPILER_${lang}_PRODUCED_FILES)
  360. # No executable was found.
  361. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  362. "Compilation of the ${lang} compiler identification source \""
  363. "${src}\" did not produce an executable in \""
  364. "${CMAKE_${lang}_COMPILER_ID_DIR}\".\n\n")
  365. endif()
  366. set(COMPILER_${lang}_PRODUCED_OUTPUT "${CMAKE_${lang}_COMPILER_ID_OUTPUT}")
  367. endif()
  368. # Return the files produced by the compilation.
  369. set(COMPILER_${lang}_PRODUCED_FILES "${COMPILER_${lang}_PRODUCED_FILES}" PARENT_SCOPE)
  370. set(COMPILER_${lang}_PRODUCED_OUTPUT "${COMPILER_${lang}_PRODUCED_OUTPUT}" PARENT_SCOPE)
  371. endfunction()
  372. #-----------------------------------------------------------------------------
  373. # Function to extract the compiler id from compiler output.
  374. function(CMAKE_DETERMINE_COMPILER_ID_MATCH_VENDOR lang output)
  375. foreach(vendor ${CMAKE_${lang}_COMPILER_ID_MATCH_VENDORS})
  376. if(output MATCHES "${CMAKE_${lang}_COMPILER_ID_MATCH_VENDOR_REGEX_${vendor}}")
  377. set(CMAKE_${lang}_COMPILER_ID "${vendor}")
  378. endif()
  379. endforeach()
  380. set(CMAKE_${lang}_COMPILER_ID "${CMAKE_${lang}_COMPILER_ID}" PARENT_SCOPE)
  381. endfunction()
  382. #-----------------------------------------------------------------------------
  383. # Function to extract the compiler id from an executable.
  384. function(CMAKE_DETERMINE_COMPILER_ID_CHECK lang file)
  385. # Look for a compiler id if not yet known.
  386. if(NOT CMAKE_${lang}_COMPILER_ID)
  387. # Read the compiler identification string from the executable file.
  388. set(COMPILER_ID)
  389. set(COMPILER_VERSION)
  390. set(COMPILER_VERSION_MAJOR 0)
  391. set(COMPILER_VERSION_MINOR 0)
  392. set(COMPILER_VERSION_PATCH 0)
  393. set(COMPILER_VERSION_TWEAK 0)
  394. set(HAVE_COMPILER_VERSION_MAJOR 0)
  395. set(HAVE_COMPILER_VERSION_MINOR 0)
  396. set(HAVE_COMPILER_VERSION_PATCH 0)
  397. set(HAVE_COMPILER_VERSION_TWEAK 0)
  398. set(COMPILER_WRAPPER)
  399. set(DIGIT_VALUE_1 1)
  400. set(DIGIT_VALUE_2 10)
  401. set(DIGIT_VALUE_3 100)
  402. set(DIGIT_VALUE_4 1000)
  403. set(DIGIT_VALUE_5 10000)
  404. set(DIGIT_VALUE_6 100000)
  405. set(DIGIT_VALUE_7 1000000)
  406. set(DIGIT_VALUE_8 10000000)
  407. set(PLATFORM_ID)
  408. set(ARCHITECTURE_ID)
  409. set(SIMULATE_ID)
  410. set(SIMULATE_VERSION)
  411. file(STRINGS ${file}
  412. CMAKE_${lang}_COMPILER_ID_STRINGS LIMIT_COUNT 38 REGEX "INFO:[A-Za-z0-9_]+\\[[^]]*\\]")
  413. set(COMPILER_ID_TWICE)
  414. foreach(info ${CMAKE_${lang}_COMPILER_ID_STRINGS})
  415. if("${info}" MATCHES "INFO:compiler\\[([^]\"]*)\\]")
  416. if(COMPILER_ID)
  417. set(COMPILER_ID_TWICE 1)
  418. endif()
  419. set(COMPILER_ID "${CMAKE_MATCH_1}")
  420. endif()
  421. if("${info}" MATCHES "INFO:platform\\[([^]\"]*)\\]")
  422. set(PLATFORM_ID "${CMAKE_MATCH_1}")
  423. endif()
  424. if("${info}" MATCHES "INFO:arch\\[([^]\"]*)\\]")
  425. set(ARCHITECTURE_ID "${CMAKE_MATCH_1}")
  426. endif()
  427. if("${info}" MATCHES "INFO:compiler_version\\[([^]\"]*)\\]")
  428. string(REGEX REPLACE "^0+([0-9])" "\\1" COMPILER_VERSION "${CMAKE_MATCH_1}")
  429. string(REGEX REPLACE "\\.0+([0-9])" ".\\1" COMPILER_VERSION "${COMPILER_VERSION}")
  430. endif()
  431. foreach(comp MAJOR MINOR PATCH TWEAK)
  432. foreach(digit 1 2 3 4 5 6 7 8 9)
  433. if("${info}" MATCHES "INFO:compiler_version_${comp}_digit_${digit}\\[([0-9])\\]")
  434. set(value ${CMAKE_MATCH_1})
  435. math(EXPR COMPILER_VERSION_${comp} "${COMPILER_VERSION_${comp}} + ${value} * ${DIGIT_VALUE_${digit}}")
  436. set(HAVE_COMPILER_VERSION_${comp} 1)
  437. endif()
  438. endforeach()
  439. endforeach()
  440. if("${info}" MATCHES "INFO:compiler_wrapper\\[([^]\"]*)\\]")
  441. set(COMPILER_WRAPPER "${CMAKE_MATCH_1}")
  442. endif()
  443. if("${info}" MATCHES "INFO:simulate\\[([^]\"]*)\\]")
  444. set(SIMULATE_ID "${CMAKE_MATCH_1}")
  445. endif()
  446. if("${info}" MATCHES "INFO:simulate_version\\[([^]\"]*)\\]")
  447. string(REGEX REPLACE "^0+([0-9])" "\\1" SIMULATE_VERSION "${CMAKE_MATCH_1}")
  448. string(REGEX REPLACE "\\.0+([0-9])" ".\\1" SIMULATE_VERSION "${SIMULATE_VERSION}")
  449. endif()
  450. if("${info}" MATCHES "INFO:qnxnto\\[\\]")
  451. set(COMPILER_QNXNTO 1)
  452. endif()
  453. if("${info}" MATCHES "INFO:dialect_default\\[([^]\"]*)\\]")
  454. set(CMAKE_${lang}_STANDARD_COMPUTED_DEFAULT "${CMAKE_MATCH_1}")
  455. endif()
  456. endforeach()
  457. # Construct compiler version from components if needed.
  458. if(NOT DEFINED COMPILER_VERSION AND HAVE_COMPILER_VERSION_MAJOR)
  459. set(COMPILER_VERSION "${COMPILER_VERSION_MAJOR}")
  460. if(HAVE_COMPILER_VERSION_MINOR)
  461. set(COMPILER_VERSION "${COMPILER_VERSION}.${COMPILER_VERSION_MINOR}")
  462. if(HAVE_COMPILER_VERSION_PATCH)
  463. set(COMPILER_VERSION "${COMPILER_VERSION}.${COMPILER_VERSION_PATCH}")
  464. if(HAVE_COMPILER_VERSION_TWEAK)
  465. set(COMPILER_VERSION "${COMPILER_VERSION}.${COMPILER_VERSION_TWEAK}")
  466. endif()
  467. endif()
  468. endif()
  469. endif()
  470. # Detect the exact architecture from the PE header.
  471. if(WIN32)
  472. # The offset to the PE signature is stored at 0x3c.
  473. file(READ ${file} peoffsethex LIMIT 1 OFFSET 60 HEX)
  474. string(SUBSTRING "${peoffsethex}" 0 1 peoffsethex1)
  475. string(SUBSTRING "${peoffsethex}" 1 1 peoffsethex2)
  476. set(peoffsetexpression "${peoffsethex1} * 16 + ${peoffsethex2}")
  477. string(REPLACE "a" "10" peoffsetexpression "${peoffsetexpression}")
  478. string(REPLACE "b" "11" peoffsetexpression "${peoffsetexpression}")
  479. string(REPLACE "c" "12" peoffsetexpression "${peoffsetexpression}")
  480. string(REPLACE "d" "13" peoffsetexpression "${peoffsetexpression}")
  481. string(REPLACE "e" "14" peoffsetexpression "${peoffsetexpression}")
  482. string(REPLACE "f" "15" peoffsetexpression "${peoffsetexpression}")
  483. math(EXPR peoffset "${peoffsetexpression}")
  484. file(READ ${file} peheader LIMIT 6 OFFSET ${peoffset} HEX)
  485. if(peheader STREQUAL "50450000a201")
  486. set(ARCHITECTURE_ID "SH3")
  487. elseif(peheader STREQUAL "50450000a301")
  488. set(ARCHITECTURE_ID "SH3DSP")
  489. elseif(peheader STREQUAL "50450000a601")
  490. set(ARCHITECTURE_ID "SH4")
  491. elseif(peheader STREQUAL "50450000a801")
  492. set(ARCHITECTURE_ID "SH5")
  493. endif()
  494. endif()
  495. # Check if a valid compiler and platform were found.
  496. if(COMPILER_ID AND NOT COMPILER_ID_TWICE)
  497. set(CMAKE_${lang}_COMPILER_ID "${COMPILER_ID}")
  498. set(CMAKE_${lang}_PLATFORM_ID "${PLATFORM_ID}")
  499. set(MSVC_${lang}_ARCHITECTURE_ID "${ARCHITECTURE_ID}")
  500. set(CMAKE_${lang}_COMPILER_VERSION "${COMPILER_VERSION}")
  501. set(CMAKE_${lang}_SIMULATE_ID "${SIMULATE_ID}")
  502. set(CMAKE_${lang}_SIMULATE_VERSION "${SIMULATE_VERSION}")
  503. endif()
  504. # Check the compiler identification string.
  505. if(CMAKE_${lang}_COMPILER_ID)
  506. # The compiler identification was found.
  507. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  508. "The ${lang} compiler identification is ${CMAKE_${lang}_COMPILER_ID}, found in \""
  509. "${file}\"\n\n")
  510. else()
  511. # The compiler identification could not be found.
  512. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  513. "The ${lang} compiler identification could not be found in \""
  514. "${file}\"\n\n")
  515. endif()
  516. endif()
  517. # try to figure out the executable format: ELF, COFF, Mach-O
  518. if(NOT CMAKE_EXECUTABLE_FORMAT)
  519. file(READ ${file} CMAKE_EXECUTABLE_MAGIC LIMIT 4 HEX)
  520. # ELF files start with 0x7f"ELF"
  521. if("${CMAKE_EXECUTABLE_MAGIC}" STREQUAL "7f454c46")
  522. set(CMAKE_EXECUTABLE_FORMAT "ELF" CACHE INTERNAL "Executable file format")
  523. endif()
  524. # # COFF (.exe) files start with "MZ"
  525. # if("${CMAKE_EXECUTABLE_MAGIC}" MATCHES "4d5a....")
  526. # set(CMAKE_EXECUTABLE_FORMAT "COFF" CACHE STRING "Executable file format")
  527. # endif()
  528. #
  529. # # Mach-O files start with CAFEBABE or FEEDFACE, according to http://radio.weblogs.com/0100490/2003/01/28.html
  530. # if("${CMAKE_EXECUTABLE_MAGIC}" MATCHES "cafebabe")
  531. # set(CMAKE_EXECUTABLE_FORMAT "MACHO" CACHE STRING "Executable file format")
  532. # endif()
  533. # if("${CMAKE_EXECUTABLE_MAGIC}" MATCHES "feedface")
  534. # set(CMAKE_EXECUTABLE_FORMAT "MACHO" CACHE STRING "Executable file format")
  535. # endif()
  536. endif()
  537. if(NOT DEFINED CMAKE_EXECUTABLE_FORMAT)
  538. set(CMAKE_EXECUTABLE_FORMAT)
  539. endif()
  540. # Return the information extracted.
  541. set(CMAKE_${lang}_COMPILER_ID "${CMAKE_${lang}_COMPILER_ID}" PARENT_SCOPE)
  542. set(CMAKE_${lang}_PLATFORM_ID "${CMAKE_${lang}_PLATFORM_ID}" PARENT_SCOPE)
  543. set(MSVC_${lang}_ARCHITECTURE_ID "${MSVC_${lang}_ARCHITECTURE_ID}"
  544. PARENT_SCOPE)
  545. set(CMAKE_${lang}_COMPILER_VERSION "${CMAKE_${lang}_COMPILER_VERSION}" PARENT_SCOPE)
  546. set(CMAKE_${lang}_COMPILER_WRAPPER "${COMPILER_WRAPPER}" PARENT_SCOPE)
  547. set(CMAKE_${lang}_SIMULATE_ID "${CMAKE_${lang}_SIMULATE_ID}" PARENT_SCOPE)
  548. set(CMAKE_${lang}_SIMULATE_VERSION "${CMAKE_${lang}_SIMULATE_VERSION}" PARENT_SCOPE)
  549. set(CMAKE_EXECUTABLE_FORMAT "${CMAKE_EXECUTABLE_FORMAT}" PARENT_SCOPE)
  550. set(COMPILER_QNXNTO "${COMPILER_QNXNTO}" PARENT_SCOPE)
  551. set(CMAKE_${lang}_STANDARD_COMPUTED_DEFAULT "${CMAKE_${lang}_STANDARD_COMPUTED_DEFAULT}" PARENT_SCOPE)
  552. endfunction()
  553. #-----------------------------------------------------------------------------
  554. # Function to query the compiler vendor.
  555. # This uses a table with entries of the form
  556. # list(APPEND CMAKE_${lang}_COMPILER_ID_VENDORS ${vendor})
  557. # set(CMAKE_${lang}_COMPILER_ID_VENDOR_FLAGS_${vendor} -some-vendor-flag)
  558. # set(CMAKE_${lang}_COMPILER_ID_VENDOR_REGEX_${vendor} "Some Vendor Output")
  559. # We try running the compiler with the flag for each vendor and
  560. # matching its regular expression in the output.
  561. function(CMAKE_DETERMINE_COMPILER_ID_VENDOR lang)
  562. if(NOT CMAKE_${lang}_COMPILER_ID_DIR)
  563. # We get here when this function is called not from within CMAKE_DETERMINE_COMPILER_ID()
  564. # This is done e.g. for detecting the compiler ID for assemblers.
  565. # Compute the directory in which to run the test and Create a clean working directory.
  566. set(CMAKE_${lang}_COMPILER_ID_DIR ${CMAKE_PLATFORM_INFO_DIR}/CompilerId${lang})
  567. file(REMOVE_RECURSE ${CMAKE_${lang}_COMPILER_ID_DIR})
  568. file(MAKE_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR})
  569. endif()
  570. foreach(vendor ${CMAKE_${lang}_COMPILER_ID_VENDORS})
  571. set(flags ${CMAKE_${lang}_COMPILER_ID_VENDOR_FLAGS_${vendor}})
  572. set(regex ${CMAKE_${lang}_COMPILER_ID_VENDOR_REGEX_${vendor}})
  573. execute_process(
  574. COMMAND "${CMAKE_${lang}_COMPILER}"
  575. ${CMAKE_${lang}_COMPILER_ID_ARG1}
  576. ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST}
  577. ${flags}
  578. WORKING_DIRECTORY ${CMAKE_${lang}_COMPILER_ID_DIR}
  579. OUTPUT_VARIABLE output ERROR_VARIABLE output
  580. RESULT_VARIABLE result
  581. TIMEOUT 10
  582. )
  583. if("${output}" MATCHES "${regex}")
  584. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  585. "Checking whether the ${lang} compiler is ${vendor} using \"${flags}\" "
  586. "matched \"${regex}\":\n${output}")
  587. set(CMAKE_${lang}_COMPILER_ID "${vendor}" PARENT_SCOPE)
  588. break()
  589. else()
  590. if("${result}" MATCHES "timeout")
  591. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  592. "Checking whether the ${lang} compiler is ${vendor} using \"${flags}\" "
  593. "terminated after 10 s due to timeout.")
  594. else()
  595. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  596. "Checking whether the ${lang} compiler is ${vendor} using \"${flags}\" "
  597. "did not match \"${regex}\":\n${output}")
  598. endif()
  599. endif()
  600. endforeach()
  601. endfunction()
  602. function(CMAKE_DETERMINE_MSVC_SHOWINCLUDES_PREFIX lang)
  603. # Run this MSVC-compatible compiler to detect what the /showIncludes
  604. # option displays. We can use a C source even with the C++ compiler
  605. # because MSVC-compatible compilers handle both and show the same output.
  606. set(showdir ${CMAKE_BINARY_DIR}/CMakeFiles/ShowIncludes)
  607. file(WRITE ${showdir}/foo.h "\n")
  608. file(WRITE ${showdir}/main.c "#include \"foo.h\" \nint main(){}\n")
  609. execute_process(
  610. COMMAND "${CMAKE_${lang}_COMPILER}"
  611. ${CMAKE_${lang}_COMPILER_ID_ARG1}
  612. ${CMAKE_${lang}_COMPILER_ID_FLAGS_LIST}
  613. /nologo /showIncludes /c main.c
  614. WORKING_DIRECTORY ${showdir}
  615. OUTPUT_VARIABLE out
  616. ERROR_VARIABLE err
  617. RESULT_VARIABLE res
  618. )
  619. if(res EQUAL 0 AND "${out}" MATCHES "(^|\n)([^:\n]*:[^:\n]*:[ \t]*)")
  620. set(CMAKE_${lang}_CL_SHOWINCLUDES_PREFIX "${CMAKE_MATCH_2}" PARENT_SCOPE)
  621. else()
  622. set(CMAKE_${lang}_CL_SHOWINCLUDES_PREFIX "" PARENT_SCOPE)
  623. endif()
  624. endfunction()