summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-01-18 17:52:28 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-01-18 17:52:28 +0000
commitff24e1aa4c4f3e5caab51cf0a1bcc693309cd7c6 (patch)
treeda3534c19c747bbe6852508f82b356057d2f94bf
parent8c94086c908a57a1aaf18a3b11a47807ce639d6d (diff)
downloadbcm5719-llvm-ff24e1aa4c4f3e5caab51cf0a1bcc693309cd7c6.tar.gz
bcm5719-llvm-ff24e1aa4c4f3e5caab51cf0a1bcc693309cd7c6.zip
Don't try to build compiler-rt if it happens to be checked out into projects/
llvm-svn: 93729
-rw-r--r--llvm/projects/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/projects/Makefile b/llvm/projects/Makefile
index b966fc7f780..491d596eca9 100644
--- a/llvm/projects/Makefile
+++ b/llvm/projects/Makefile
@@ -14,6 +14,9 @@ include $(LEVEL)/Makefile.config
# Before 2008.06.24 it lived in llvm-test, so exclude that as well for now.
DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
+# Don't build compiler-rt either, it isn't designed to be built directly.
+DIRS := $(filter-out compiler-rt,$(DIRS))
+
# Sparc cannot link shared libraries (libtool problem?)
ifeq ($(ARCH), Sparc)
DIRS := $(filter-out sample, $(DIRS))
OpenPOWER on IntegriCloud