[llvm] r191811 - Disable libc++ building by default with CMake with MSVC -- some bots

Chandler Carruth chandlerc at gmail.com
Tue Oct 1 23:25:57 PDT 2013


Author: chandlerc
Date: Wed Oct  2 01:25:57 2013
New Revision: 191811

URL: http://llvm.org/viewvc/llvm-project?rev=191811&view=rev
Log:
Disable libc++ building by default with CMake with MSVC -- some bots
aren't yet happy with this config.

Modified:
    llvm/trunk/projects/CMakeLists.txt

Modified: llvm/trunk/projects/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/CMakeLists.txt?rev=191811&r1=191810&r2=191811&view=diff
==============================================================================
--- llvm/trunk/projects/CMakeLists.txt (original)
+++ llvm/trunk/projects/CMakeLists.txt Wed Oct  2 01:25:57 2013
@@ -14,7 +14,11 @@ endforeach(entry)
 # Also add in libc++ and compiler-rt trees if present (and we have
 # a sufficiently recent version of CMake where required).
 if(${LLVM_BUILD_RUNTIME})
-  add_llvm_external_project(libcxx)
+  # MSVC isn't quite working with libc++ yet, disable it until issues are
+  # fixed.
+  if(NOT MSVC)
+    add_llvm_external_project(libcxx)
+  endif()
   if(${CMAKE_VERSION} VERSION_GREATER 2.8.7)
     add_llvm_external_project(compiler-rt)
   else()





More information about the llvm-commits mailing list