[PATCH] D39157: fix typo in a CMake SANITIZER_CAN_USE_CXXABI variable initial definition

Jim Lin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 11 22:57:14 PDT 2021


Jim updated this revision to Diff 336749.
Jim added a comment.
Herald added a project: Sanitizers.
Herald added a subscriber: Sanitizers.

Rebase


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D39157/new/

https://reviews.llvm.org/D39157

Files:
  compiler-rt/CMakeLists.txt


Index: compiler-rt/CMakeLists.txt
===================================================================
--- compiler-rt/CMakeLists.txt
+++ compiler-rt/CMakeLists.txt
@@ -173,7 +173,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.336749.patch
Type: text/x-patch
Size: 427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210412/d289c30c/attachment.bin>


More information about the llvm-commits mailing list