[PATCH] D97182: [clang] fix cmake wrong variable name from RTLIBS to RTLIB
Philip Lassen via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 22 23:25:38 PST 2021
philass updated this revision to Diff 325690.
philass added a comment.
Rerun failed build that may be fixed in
https://reviews.llvm.org/rG4827492d9fcfe4ac5df4f319e935e33bec946195
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97182/new/
https://reviews.llvm.org/D97182
Files:
clang/CMakeLists.txt
Index: clang/CMakeLists.txt
===================================================================
--- clang/CMakeLists.txt
+++ clang/CMakeLists.txt
@@ -262,7 +262,7 @@
if (CLANG_DEFAULT_UNWINDLIB STREQUAL "")
if (CLANG_DEFAULT_RTLIB STREQUAL "libgcc")
set (CLANG_DEFAULT_UNWINDLIB "libgcc" CACHE STRING "" FORCE)
- elseif (CLANG_DEFAULT_RTLIBS STREQUAL "libunwind")
+ elseif (CLANG_DEFAULT_RTLIB STREQUAL "libunwind")
set (CLANG_DEFAULT_UNWINDLIB "none" CACHE STRING "" FORCE)
endif()
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97182.325690.patch
Type: text/x-patch
Size: 511 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210223/d1b9ca79/attachment.bin>
More information about the cfe-commits
mailing list