diff options
author | Petr Hosek <phosek@google.com> | 2022-03-10 11:47:09 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2022-04-24 13:06:36 +0300 |
commit | b3df14b6c98702ce50401fd039852787373e4676 (patch) | |
tree | abc180c46d6de2e21bf95e567b61678f35f111f7 /runtimes | |
parent | 2fc67af487aa3c2915797a6f2abd4c06e6c1eb08 (diff) | |
download | llvm-b3df14b6c98702ce50401fd039852787373e4676.zip llvm-b3df14b6c98702ce50401fd039852787373e4676.tar.gz llvm-b3df14b6c98702ce50401fd039852787373e4676.tar.bz2 |
[runtimes] [CMake] Unify variable names
Avoid repeating CMake checks across runtimes by unifying names of
variables used for results to leverage CMake caching.
Differential Revision: https://reviews.llvm.org/D110005
Diffstat (limited to 'runtimes')
-rw-r--r-- | runtimes/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt index 613a289..b230251 100644 --- a/runtimes/CMakeLists.txt +++ b/runtimes/CMakeLists.txt @@ -110,12 +110,12 @@ endif() # Check for -nostdlib++ first; if there's no C++ standard library yet, # all check_cxx_compiler_flag commands will fail until we add -nostdlib++ # (or -nodefaultlibs). -llvm_check_compiler_linker_flag(C "-nostdlib++" LLVM_RUNTIMES_SUPPORT_NOSTDLIBXX_FLAG) -if (LLVM_RUNTIMES_SUPPORT_NOSTDLIBXX_FLAG) +llvm_check_compiler_linker_flag(C "-nostdlib++" CXX_SUPPORTS_NOSTDLIBXX_FLAG) +if (CXX_SUPPORTS_NOSTDLIBXX_FLAG) set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nostdlib++") endif() -check_cxx_compiler_flag(-nostdinc++ LLVM_RUNTIMES_SUPPORT_NOSTDINCXX_FLAG) -if (LLVM_RUNTIMES_SUPPORT_NOSTDINCXX_FLAG) +check_cxx_compiler_flag(-nostdinc++ CXX_SUPPORTS_NOSTDINCXX_FLAG) +if (CXX_SUPPORTS_NOSTDINCXX_FLAG) set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -nostdinc++") endif() |