CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. #=============================================================================
  2. # Copyright 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. # This file is included by CMakeFindEclipseCDT4.cmake and CMakeFindCodeBlocks.cmake
  14. # The Eclipse and the CodeBlocks generators need to know the standard include path
  15. # so that they can find the headers at runtime and parsing etc. works better
  16. # This is done here by actually running gcc with the options so it prints its
  17. # system include directories, which are parsed then and stored in the cache.
  18. macro(_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS _lang _resultIncludeDirs _resultDefines)
  19. set(${_resultIncludeDirs})
  20. set(_gccOutput)
  21. file(WRITE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy" "\n" )
  22. if (${_lang} STREQUAL "c++")
  23. set(_compilerExecutable "${CMAKE_CXX_COMPILER}")
  24. set(_arg1 "${CMAKE_CXX_COMPILER_ARG1}")
  25. if (CMAKE_CXX_FLAGS MATCHES "(-stdlib=[^ ]+)")
  26. set(_stdlib "${CMAKE_MATCH_1}")
  27. endif ()
  28. if (CMAKE_CXX_FLAGS MATCHES "(-std=[^ ]+)")
  29. set(_stdver "${CMAKE_MATCH_1}")
  30. endif ()
  31. else ()
  32. set(_compilerExecutable "${CMAKE_C_COMPILER}")
  33. set(_arg1 "${CMAKE_C_COMPILER_ARG1}")
  34. endif ()
  35. execute_process(COMMAND ${_compilerExecutable} ${_arg1} ${_stdver} ${_stdlib} -v -E -x ${_lang} -dD dummy
  36. WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles
  37. ERROR_VARIABLE _gccOutput
  38. OUTPUT_VARIABLE _gccStdout )
  39. file(REMOVE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy")
  40. # First find the system include dirs:
  41. if( "${_gccOutput}" MATCHES "> search starts here[^\n]+\n *(.+ *\n) *End of (search) list" )
  42. # split the output into lines and then remove leading and trailing spaces from each of them:
  43. string(REGEX MATCHALL "[^\n]+\n" _includeLines "${CMAKE_MATCH_1}")
  44. foreach(nextLine ${_includeLines})
  45. # on OSX, gcc says things like this: "/System/Library/Frameworks (framework directory)", strip the last part
  46. string(REGEX REPLACE "\\(framework directory\\)" "" nextLineNoFramework "${nextLine}")
  47. # strip spaces at the beginning and the end
  48. string(STRIP "${nextLineNoFramework}" _includePath)
  49. list(APPEND ${_resultIncludeDirs} "${_includePath}")
  50. endforeach()
  51. endif()
  52. # now find the builtin macros:
  53. string(REGEX MATCHALL "#define[^\n]+\n" _defineLines "${_gccStdout}")
  54. # A few example lines which the regexp below has to match properly:
  55. # #define MAX(a,b) ((a) > (b) ? (a) : (b))
  56. # #define __fastcall __attribute__((__fastcall__))
  57. # #define FOO (23)
  58. # #define __UINTMAX_TYPE__ long long unsigned int
  59. # #define __UINTMAX_TYPE__ long long unsigned int
  60. # #define __i386__ 1
  61. foreach(nextLine ${_defineLines})
  62. string(REGEX MATCH "^#define +([A-Za-z_][A-Za-z0-9_]*)(\\([^\\)]+\\))? +(.+) *$" _dummy "${nextLine}")
  63. set(_name "${CMAKE_MATCH_1}${CMAKE_MATCH_2}")
  64. string(STRIP "${CMAKE_MATCH_3}" _value)
  65. #message(STATUS "m1: -${CMAKE_MATCH_1}- m2: -${CMAKE_MATCH_2}- m3: -${CMAKE_MATCH_3}-")
  66. list(APPEND ${_resultDefines} "${_name}")
  67. if(_value)
  68. list(APPEND ${_resultDefines} "${_value}")
  69. else()
  70. list(APPEND ${_resultDefines} " ")
  71. endif()
  72. endforeach()
  73. endmacro()
  74. # Save the current LC_ALL, LC_MESSAGES, and LANG environment variables and set them
  75. # to "C" that way GCC's "search starts here" text is in English and we can grok it.
  76. set(_orig_lc_all $ENV{LC_ALL})
  77. set(_orig_lc_messages $ENV{LC_MESSAGES})
  78. set(_orig_lang $ENV{LANG})
  79. set(ENV{LC_ALL} C)
  80. set(ENV{LC_MESSAGES} C)
  81. set(ENV{LANG} C)
  82. # Now check for C, works for gcc and Intel compiler at least
  83. if (NOT CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS)
  84. if (CMAKE_C_COMPILER_ID MATCHES GNU OR CMAKE_C_COMPILER_ID MATCHES Intel OR CMAKE_C_COMPILER_ID MATCHES Clang)
  85. _DETERMINE_GCC_SYSTEM_INCLUDE_DIRS(c _dirs _defines)
  86. set(CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS "${_dirs}" CACHE INTERNAL "C compiler system include directories")
  87. set(CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS "${_defines}" CACHE INTERNAL "C compiler system defined macros")
  88. elseif ("${CMAKE_C_COMPILER_ID}" MATCHES MSVC)
  89. set(CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS "$ENV{INCLUDE}" CACHE INTERNAL "C compiler system include directories")
  90. endif ()
  91. endif ()
  92. # And now the same for C++
  93. if (NOT CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS)
  94. if ("${CMAKE_CXX_COMPILER_ID}" MATCHES GNU OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Intel OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Clang)
  95. _DETERMINE_GCC_SYSTEM_INCLUDE_DIRS(c++ _dirs _defines)
  96. set(CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS "${_dirs}" CACHE INTERNAL "CXX compiler system include directories")
  97. set(CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS "${_defines}" CACHE INTERNAL "CXX compiler system defined macros")
  98. elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES MSVC)
  99. set(CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS "$ENV{INCLUDE}" CACHE INTERNAL "CXX compiler system include directories")
  100. endif ()
  101. endif ()
  102. # Restore original LC_ALL, LC_MESSAGES, and LANG
  103. set(ENV{LC_ALL} ${_orig_lc_all})
  104. set(ENV{LC_MESSAGES} ${_orig_lc_messages})
  105. set(ENV{LANG} ${_orig_lang})