CMakeCompilerIdDetection.cmake 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #=============================================================================
  2. # Copyright 2014 Stephen Kelly <steveire@gmail.com>
  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(_readFile file)
  14. include(${file})
  15. get_filename_component(name ${file} NAME_WE)
  16. string(REGEX REPLACE "-.*" "" CompilerId ${name})
  17. set(_compiler_id_version_compute_${CompilerId} ${_compiler_id_version_compute} PARENT_SCOPE)
  18. set(_compiler_id_simulate_${CompilerId} ${_compiler_id_simulate} PARENT_SCOPE)
  19. set(_compiler_id_pp_test_${CompilerId} ${_compiler_id_pp_test} PARENT_SCOPE)
  20. endfunction()
  21. include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
  22. function(compiler_id_detection outvar lang)
  23. if (NOT lang STREQUAL Fortran)
  24. file(GLOB lang_files
  25. "${CMAKE_ROOT}/Modules/Compiler/*-DetermineCompiler.cmake")
  26. set(nonlang CXX)
  27. if (lang STREQUAL CXX)
  28. set(nonlang C)
  29. endif()
  30. file(GLOB nonlang_files
  31. "${CMAKE_ROOT}/Modules/Compiler/*-${nonlang}-DetermineCompiler.cmake")
  32. list(REMOVE_ITEM lang_files ${nonlang_files})
  33. endif()
  34. set(files ${lang_files})
  35. if (files)
  36. foreach(file ${files})
  37. _readFile(${file})
  38. endforeach()
  39. set(options ID_STRING VERSION_STRINGS ID_DEFINE PLATFORM_DEFAULT_COMPILER)
  40. set(oneValueArgs PREFIX)
  41. cmake_parse_arguments(CID "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  42. if (CID_UNPARSED_ARGUMENTS)
  43. message(FATAL_ERROR "Unrecognized arguments: \"${CID_UNPARSED_ARGUMENTS}\"")
  44. endif()
  45. # Order is relevant here. For example, compilers which pretend to be
  46. # GCC must appear before the actual GCC.
  47. if (lang STREQUAL CXX)
  48. list(APPEND ordered_compilers
  49. Comeau
  50. )
  51. endif()
  52. list(APPEND ordered_compilers
  53. Intel
  54. PathScale
  55. Embarcadero
  56. Borland
  57. Watcom
  58. OpenWatcom
  59. SunPro
  60. HP
  61. Compaq
  62. zOS
  63. XL
  64. VisualAge
  65. PGI
  66. Cray
  67. TI
  68. Fujitsu
  69. )
  70. if (lang STREQUAL C)
  71. list(APPEND ordered_compilers
  72. TinyCC
  73. Bruce
  74. )
  75. endif()
  76. list(APPEND ordered_compilers
  77. SCO
  78. AppleClang
  79. Clang
  80. GNU
  81. MSVC
  82. ADSP
  83. IAR
  84. ARMCC
  85. )
  86. if (lang STREQUAL C)
  87. list(APPEND ordered_compilers
  88. SDCC
  89. )
  90. endif()
  91. list(APPEND ordered_compilers
  92. MIPSpro)
  93. if(CID_ID_DEFINE)
  94. foreach(Id ${ordered_compilers})
  95. set(CMAKE_${lang}_COMPILER_ID_CONTENT "${CMAKE_${lang}_COMPILER_ID_CONTENT}# define ${CID_PREFIX}COMPILER_IS_${Id} 0\n")
  96. endforeach()
  97. endif()
  98. set(pp_if "#if")
  99. if (CID_VERSION_STRINGS)
  100. set(CMAKE_${lang}_COMPILER_ID_CONTENT "${CMAKE_${lang}_COMPILER_ID_CONTENT}\n/* Version number components: V=Version, R=Revision, P=Patch
  101. Version date components: YYYY=Year, MM=Month, DD=Day */\n")
  102. endif()
  103. foreach(Id ${ordered_compilers})
  104. if (NOT _compiler_id_pp_test_${Id})
  105. message(FATAL_ERROR "No preprocessor test for \"${Id}\"")
  106. endif()
  107. set(id_content "${pp_if} ${_compiler_id_pp_test_${Id}}\n")
  108. if (CID_ID_STRING)
  109. set(PREFIX ${CID_PREFIX})
  110. string(CONFIGURE "${_compiler_id_simulate_${Id}}" SIMULATE_BLOCK @ONLY)
  111. set(id_content "${id_content}# define ${CID_PREFIX}COMPILER_ID \"${Id}\"${SIMULATE_BLOCK}")
  112. endif()
  113. if (CID_ID_DEFINE)
  114. set(id_content "${id_content}# undef ${CID_PREFIX}COMPILER_IS_${Id}\n")
  115. set(id_content "${id_content}# define ${CID_PREFIX}COMPILER_IS_${Id} 1\n")
  116. endif()
  117. if (CID_VERSION_STRINGS)
  118. set(PREFIX ${CID_PREFIX})
  119. set(MACRO_DEC DEC)
  120. set(MACRO_HEX HEX)
  121. string(CONFIGURE "${_compiler_id_version_compute_${Id}}" VERSION_BLOCK @ONLY)
  122. set(id_content "${id_content}${VERSION_BLOCK}\n")
  123. endif()
  124. set(CMAKE_${lang}_COMPILER_ID_CONTENT "${CMAKE_${lang}_COMPILER_ID_CONTENT}\n${id_content}")
  125. set(pp_if "#elif")
  126. endforeach()
  127. if (CID_PLATFORM_DEFAULT_COMPILER)
  128. set(platform_compiler_detection "
  129. /* These compilers are either not known or too old to define an
  130. identification macro. Try to identify the platform and guess that
  131. it is the native compiler. */
  132. #elif defined(__sgi)
  133. # define ${CID_PREFIX}COMPILER_ID \"MIPSpro\"
  134. #elif defined(__hpux) || defined(__hpua)
  135. # define ${CID_PREFIX}COMPILER_ID \"HP\"
  136. #else /* unknown compiler */
  137. # define ${CID_PREFIX}COMPILER_ID \"\"")
  138. endif()
  139. set(CMAKE_${lang}_COMPILER_ID_CONTENT "${CMAKE_${lang}_COMPILER_ID_CONTENT}\n${platform_compiler_detection}\n#endif")
  140. endif()
  141. set(${outvar} ${CMAKE_${lang}_COMPILER_ID_CONTENT} PARENT_SCOPE)
  142. endfunction()