ParseImplicitIncludeInfo.cmake 5.4 KB

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