llvm-project/cmake/Modules/LLVMCheckCompilerLinkerFlag.cmake
h-vetinari 89946bda5e
[cmake] switch to CMake's native check_{compiler,linker}_flag (#96171)
Broken out from #93429

Somewhat closing the loop opened by 7017e6c9cfd2de.

Co-authored-by: Ryan Prichard <rprichard@google.com>
2024-07-31 10:31:13 -04:00

18 lines
713 B
CMake

include(CMakePushCheckState)
include(CheckCompilerFlag)
function(llvm_check_compiler_linker_flag lang flag out_var)
# If testing a flag with check_compiler_flag, it gets added to the compile
# command only, but not to the linker command in that test. If the flag
# is vital for linking to succeed, the test would fail even if it would
# have succeeded if it was included on both commands.
#
# Therefore, try adding the flag to CMAKE_REQUIRED_FLAGS, which gets
# added to both compiling and linking commands in the tests.
cmake_push_check_state()
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${flag}")
check_compiler_flag("${lang}" "" ${out_var})
cmake_pop_check_state()
endfunction()