[PATCH] D49157: Add libcxxabi option back for sanitizer use.

Stephen Hines via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 10 17:55:07 PDT 2018


This revision was automatically updated to reflect the committed changes.
srhines marked an inline comment as done.
Closed by commit rL336749: Add libcxxabi option back for sanitizer use. (authored by srhines, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D49157

Files:
  compiler-rt/trunk/CMakeLists.txt


Index: compiler-rt/trunk/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/CMakeLists.txt
+++ compiler-rt/trunk/CMakeLists.txt
@@ -353,6 +353,8 @@
   else()
     append_list_if(COMPILER_RT_HAS_LIBCXX c++ SANITIZER_CXX_ABI_LIBRARY)
   endif()
+elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libcxxabi")
+  list(APPEND SANITIZER_CXX_ABI_LIBRARY "c++abi")
 elseif (SANITIZER_CXX_ABI_LIBNAME STREQUAL "libstdc++")
   append_list_if(COMPILER_RT_HAS_LIBSTDCXX stdc++ SANITIZER_CXX_ABI_LIBRARY)
 endif()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49157.154911.patch
Type: text/x-patch
Size: 549 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180711/573c2f1d/attachment.bin>


More information about the llvm-commits mailing list