summaryrefslogtreecommitdiffstats
path: root/llvm/projects
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-06-27 00:30:08 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-06-27 00:30:08 +0000
commit276abc5d4aa26c4a03708bcc3338c6e2ece96584 (patch)
tree6e68160e1a3b0ec601c744da1651bac24f2e0c87 /llvm/projects
parent62871a34609d669a3825936993e490f7e5053628 (diff)
downloadbcm5719-llvm-276abc5d4aa26c4a03708bcc3338c6e2ece96584.tar.gz
bcm5719-llvm-276abc5d4aa26c4a03708bcc3338c6e2ece96584.zip
Exclude both libcxx and compiler-rt until we get their CMake builds
suitable for building as a whole-project. llvm-svn: 159241
Diffstat (limited to 'llvm/projects')
-rw-r--r--llvm/projects/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/projects/CMakeLists.txt b/llvm/projects/CMakeLists.txt
index 415530e3323..dac637335bd 100644
--- a/llvm/projects/CMakeLists.txt
+++ b/llvm/projects/CMakeLists.txt
@@ -4,7 +4,8 @@
file(GLOB entries *)
foreach(entry ${entries})
if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
- if(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt)
+ if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND
+ (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx))
add_subdirectory(${entry})
endif()
endif()
OpenPOWER on IntegriCloud