[PATCH] D39157: fix typo in a CMake SANITIZER_CAN_USE_CXXABI variable initial definition
Martin Pelikán via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Oct 21 02:07:37 PDT 2017
pelikan created this revision.
Herald added a subscriber: mgorny.
The current variable name isn't used anywhere else, which indicates it's
a typo. Let's fix it before someone copy+pastes it somewhere else.
https://reviews.llvm.org/D39157
Files:
CMakeLists.txt
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -110,7 +110,7 @@
option(SANITIZER_ALLOW_CXXABI "Allow use of C++ ABI details in ubsan" ON)
-set(SANITIZE_CAN_USE_CXXABI OFF)
+set(SANITIZER_CAN_USE_CXXABI OFF)
if (cxxabi_supported AND SANITIZER_ALLOW_CXXABI)
set(SANITIZER_CAN_USE_CXXABI ON)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39157.119745.patch
Type: text/x-patch
Size: 391 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171021/f4a1ecc9/attachment.bin>
More information about the llvm-commits
mailing list