[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 23:02:29 PDT 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGdd4c999c2316: fix typo in a CMake SANITIZER_CAN_USE_CXXABI variable initial definition (authored by Jim).

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.336751.patch
Type: text/x-patch
Size: 427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210412/ef9271bc/attachment.bin>


More information about the llvm-commits mailing list