aboutsummaryrefslogtreecommitdiff
path: root/llvm/projects
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-06-24 07:21:35 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-06-24 07:21:35 +0000
commit99c46b980f006737ebe7d6965ffd87e8e40b35ea (patch)
treebc51954ab00fdd206c2a83485df180245acc7e06 /llvm/projects
parentcf4ab520b555bb764a72d648f2820f3deb943d29 (diff)
downloadllvm-99c46b980f006737ebe7d6965ffd87e8e40b35ea.zip
llvm-99c46b980f006737ebe7d6965ffd87e8e40b35ea.tar.gz
llvm-99c46b980f006737ebe7d6965ffd87e8e40b35ea.tar.bz2
Filter out dragonegg when checked out into a projects subdirectory.
There is some hope of eventually supporting a unified build with it, but until then this lets me (and others) check it out in this location without things breaking. llvm-svn: 184697
Diffstat (limited to 'llvm/projects')
-rw-r--r--llvm/projects/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/projects/Makefile b/llvm/projects/Makefile
index 1318a35..f00425f 100644
--- a/llvm/projects/Makefile
+++ b/llvm/projects/Makefile
@@ -20,6 +20,9 @@ DIRS := $(filter-out compiler-rt,$(DIRS))
# Don't build libcxx, it isn't designed to be built directly.
DIRS := $(filter-out libcxx,$(DIRS))
+# DragonEgg may be checked out here but doesn't (yet) build directly.
+DIRS := $(filter-out dragonegg,$(DIRS))
+
# Sparc cannot link shared libraries (libtool problem?)
ifeq ($(ARCH), Sparc)
DIRS := $(filter-out sample, $(DIRS))