[PATCH] D11252: [CMake] Workaround for PR24144: avoid installing libcxx_tsan and libcxx_msan by default "ninja install" command.

Alexey Samsonov vonosmas at gmail.com
Thu Jul 16 10:53:14 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL242424: [CMake] Workaround for PR24144: avoid installing libcxx_tsan and libcxx_msan… (authored by samsonov).

Changed prior to commit:
  http://reviews.llvm.org/D11252?vs=29861&id=29923#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11252

Files:
  compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake

Index: compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
===================================================================
--- compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
+++ compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
@@ -245,6 +245,7 @@
     list(APPEND LIBCXX_DEPS clang)
   endif()
 
+  set(EXCLUDE_FROM_ALL TRUE)
   ExternalProject_Add(${name}
     PREFIX ${prefix}
     SOURCE_DIR ${COMPILER_RT_LIBCXX_PATH}
@@ -271,4 +272,5 @@
     DEPENDERS configure
     DEPENDS ${LIBCXX_DEPS}
     )
+  set(EXCLUDE_FROM_ALL FALSE)
 endmacro()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11252.29923.patch
Type: text/x-patch
Size: 557 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150716/58a16677/attachment.bin>


More information about the llvm-commits mailing list