CMakeDetermineCompilerId: use _ARG1 to query the clang resource dir

Other core queries do this, so do it here too.
This commit is contained in:
Ben Boeckel
2024-02-24 16:54:09 -05:00
parent e98cbbf65f
commit 7008fc234b

View File

@@ -292,7 +292,9 @@ function(CMAKE_DETERMINE_COMPILER_ID lang flagvar src)
"x${CMAKE_${lang}_COMPILER_ID}" STREQUAL "xClang" AND
"x${CMAKE_${lang}_COMPILER_FRONTEND_VARIANT}" STREQUAL "xGNU")
execute_process(
COMMAND "${CMAKE_${lang}_COMPILER}" -print-resource-dir
COMMAND "${CMAKE_${lang}_COMPILER}"
${CMAKE_${lang}_COMPILER_ID_ARG1}
-print-resource-dir
OUTPUT_VARIABLE _clang_resource_dir_out
ERROR_VARIABLE _clang_resource_dir_err
RESULT_VARIABLE _clang_resource_dir_res