[PATCH] D23228: [libcxxabi] Do not depend on unwind when building standalone

Petr Hosek via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 8 15:17:46 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL278058: Do not depend on unwind when building standalone (authored by phosek).

Changed prior to commit:
  https://reviews.llvm.org/D23228?vs=67022&id=67233#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D23228

Files:
  libcxxabi/trunk/test/CMakeLists.txt

Index: libcxxabi/trunk/test/CMakeLists.txt
===================================================================
--- libcxxabi/trunk/test/CMakeLists.txt
+++ libcxxabi/trunk/test/CMakeLists.txt
@@ -36,10 +36,9 @@
 
 if (NOT LIBCXXABI_BUILT_STANDALONE)
   list(APPEND LIBCXXABI_TEST_DEPS cxx)
-endif()
-
-if (LIBCXXABI_USE_LLVM_UNWINDER)
-  list(APPEND LIBCXXABI_TEST_DEPS unwind)
+  if (LIBCXXABI_USE_LLVM_UNWINDER)
+    list(APPEND LIBCXXABI_TEST_DEPS unwind)
+  endif()
 endif()
 
 add_lit_testsuite(check-libcxxabi "Running libcxxabi tests"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23228.67233.patch
Type: text/x-patch
Size: 541 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160808/781a6fde/attachment.bin>


More information about the llvm-commits mailing list