ParseImplicitIncludeInfo.cmake 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. cmake_minimum_required(VERSION 3.14)
  2. project(Minimal NONE)
  3. #
  4. # list of targets to test. to add a target: put its files in the data
  5. # subdirectory and add it to this list... we run each target's
  6. # data/*.input file through the parser and check to see if it matches
  7. # the corresponding data/*.output file. note that the empty-* case
  8. # has special handling (it should not parse).
  9. #
  10. set(targets
  11. aix-C-XL-13.1.3 aix-CXX-XL-13.1.3
  12. aix-C-XLClang-16.1.0.1 aix-CXX-XLClang-16.1.0.1
  13. craype-C-Cray-8.7 craype-CXX-Cray-8.7 craype-Fortran-Cray-8.7
  14. craype-C-GNU-7.3.0 craype-CXX-GNU-7.3.0 craype-Fortran-GNU-7.3.0
  15. craype-C-Intel-18.0.2.20180210 craype-CXX-Intel-18.0.2.20180210
  16. craype-Fortran-Intel-18.0.2.20180210
  17. darwin-C-AppleClang-8.0.0.8000042 darwin-CXX-AppleClang-8.0.0.8000042
  18. darwin_nostdinc-C-AppleClang-8.0.0.8000042
  19. darwin_nostdinc-CXX-AppleClang-8.0.0.8000042
  20. empty-C empty-CXX
  21. freebsd-C-Clang-3.3.0 freebsd-CXX-Clang-3.3.0 freebsd-Fortran-GNU-4.6.4
  22. linux-C-GNU-7.3.0 linux-CXX-GNU-7.3.0 linux-Fortran-GNU-7.3.0
  23. linux-C-Intel-18.0.0.20170811 linux-CXX-Intel-18.0.0.20170811
  24. linux-C-PGI-18.10.1 linux-CXX-PGI-18.10.1
  25. linux-Fortran-PGI-18.10.1 linux_pgf77-Fortran-PGI-18.10.1
  26. linux_nostdinc-C-PGI-18.10.1 linux_nostdinc-CXX-PGI-18.10.1
  27. linux_nostdinc-Fortran-PGI-18.10.1
  28. linux-C-XL-12.1.0 linux-CXX-XL-12.1.0 linux-Fortran-XL-14.1.0
  29. linux_nostdinc-C-XL-12.1.0 linux_nostdinc-CXX-XL-12.1.0
  30. linux_nostdinc_i-C-XL-12.1.0 linux_nostdinc-CXX-XL-12.1.0
  31. linux-C-XL-16.1.0.0 linux-CXX-XL-16.1.0.0
  32. linux-CUDA-NVIDIA-9.2.148
  33. mingw.org-C-GNU-4.9.3 mingw.org-CXX-GNU-4.9.3
  34. netbsd-C-GNU-4.8.5 netbsd-CXX-GNU-4.8.5
  35. netbsd_nostdinc-C-GNU-4.8.5 netbsd_nostdinc-CXX-GNU-4.8.5
  36. openbsd-C-Clang-5.0.1 openbsd-CXX-Clang-5.0.1
  37. sunos-C-SunPro-5.13.0 sunos-CXX-SunPro-5.13.0 sunos-Fortran-SunPro-8.8.0
  38. )
  39. if(CMAKE_HOST_WIN32)
  40. # The KWSys actual-case cache breaks case sensitivity on Windows.
  41. list(FILTER targets EXCLUDE REGEX "-XL|-SunPro")
  42. else()
  43. # Windows drive letters are not recognized as absolute on other platforms.
  44. list(FILTER targets EXCLUDE REGEX "mingw")
  45. endif()
  46. include(${CMAKE_ROOT}/Modules/CMakeParseImplicitIncludeInfo.cmake)
  47. #
  48. # load_compiler_info: read infile, parsing out cmake compiler info
  49. # variables as we go. returns language, a list of variables we set
  50. # (so we can clear them later), and the remaining verbose output
  51. # from the compiler.
  52. #
  53. function(load_compiler_info infile lang_var outcmvars_var outstr_var)
  54. unset(lang)
  55. unset(outcmvars)
  56. unset(outstr)
  57. file(READ "${infile}" in)
  58. string(REGEX REPLACE "\r?\n" ";" in_lines "${in}")
  59. foreach(line IN LISTS in_lines)
  60. # check for special CMAKE variable lines and parse them if found
  61. if("${line}" MATCHES "^CMAKE_([_A-Za-z0-9]+)=(.*)$")
  62. if("${CMAKE_MATCH_1}" STREQUAL "LANG") # handle CMAKE_LANG here
  63. set(lang "${CMAKE_MATCH_2}")
  64. else()
  65. set(CMAKE_${CMAKE_MATCH_1} "${CMAKE_MATCH_2}" PARENT_SCOPE)
  66. list(APPEND outcmvars "CMAKE_${CMAKE_MATCH_1}")
  67. endif()
  68. else()
  69. string(APPEND outstr "${line}\n")
  70. endif()
  71. endforeach()
  72. if(NOT lang)
  73. message("load_compiler_info: ${infile} no LANG info; default to C")
  74. set(lang C)
  75. endif()
  76. set(${lang_var} "${lang}" PARENT_SCOPE)
  77. set(${outcmvars_var} "${outcmvars}" PARENT_SCOPE)
  78. set(${outstr_var} "${outstr}" PARENT_SCOPE)
  79. endfunction()
  80. #
  81. # unload_compiler_info: clear out any CMAKE_* vars load previously set
  82. #
  83. function(unload_compiler_info cmvars)
  84. foreach(var IN LISTS cmvars)
  85. unset("${var}" PARENT_SCOPE)
  86. endforeach()
  87. endfunction()
  88. #
  89. # main test loop
  90. #
  91. foreach(t ${targets})
  92. set(infile "${CMAKE_SOURCE_DIR}/data/${t}.input")
  93. set(outfile "${CMAKE_SOURCE_DIR}/data/${t}.output")
  94. if (NOT EXISTS ${infile} OR NOT EXISTS ${outfile})
  95. message("missing files for target ${t} in ${CMAKE_SOURCE_DIR}/data")
  96. continue()
  97. endif()
  98. load_compiler_info(${infile} lang cmvars input)
  99. file(READ ${outfile} output)
  100. string(STRIP "${output}" output)
  101. cmake_parse_implicit_include_info("${input}" "${lang}" idirs log state)
  102. if(t MATCHES "^empty-") # empty isn't supposed to parse
  103. if("${state}" STREQUAL "done")
  104. message("empty parse failed: ${idirs}, log=${log}")
  105. endif()
  106. elseif(NOT "${state}" STREQUAL "done" OR NOT "${output}" STREQUAL "${idirs}")
  107. message("parse failed: state=${state}, ${output} != ${idirs}, log=${log}")
  108. endif()
  109. unload_compiler_info("${cmvars}")
  110. endforeach(t)