summaryrefslogtreecommitdiff
path: root/libunwind
diff options
context:
space:
mode:
authorPavel Samolysov <samolisov@gmail.com>2022-05-26 17:03:08 +0300
committerPavel Samolysov <samolisov@gmail.com>2022-05-27 09:20:57 +0300
commite251fb4cdeb723eff5507be1efeb3fc69f7a2ce7 (patch)
tree8314d75daf1e81dfa49bfc82fa9c9d717182e609 /libunwind
parent842e48bd65770f0368ee0d1ca7ee34dbd8f0ff03 (diff)
downloadllvm-e251fb4cdeb723eff5507be1efeb3fc69f7a2ce7.tar.gz
[libunwind][CMake] Fix name of LIBUNWIND_SUPPORTS_NODEFAULTLIBS_FLAG
The CMake variable LIBUNWIND_SUPPORTS_NODEFAULTLIBS_FLAG has been renamed into C_SUPPORTS_NODEFAULTLIBS_FLAG because the last one is used in the confix-ix.cmake file while the variable with the original name is not used at al. Differential Revision: https://reviews.llvm.org/D126466
Diffstat (limited to 'libunwind')
-rw-r--r--libunwind/cmake/config-ix.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/libunwind/cmake/config-ix.cmake b/libunwind/cmake/config-ix.cmake
index f716532fdf1b..c9b65b3cefc0 100644
--- a/libunwind/cmake/config-ix.cmake
+++ b/libunwind/cmake/config-ix.cmake
@@ -35,7 +35,7 @@ llvm_check_compiler_linker_flag(C "-nostdlib++" CXX_SUPPORTS_NOSTDLIBXX_FLAG)
if (CXX_SUPPORTS_NOSTDLIBXX_FLAG)
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nostdlib++")
else()
- llvm_check_compiler_linker_flag(C "-nodefaultlibs" LIBUNWIND_SUPPORTS_NODEFAULTLIBS_FLAG)
+ llvm_check_compiler_linker_flag(C "-nodefaultlibs" C_SUPPORTS_NODEFAULTLIBS_FLAG)
if (C_SUPPORTS_NODEFAULTLIBS_FLAG)
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nodefaultlibs")
endif()