1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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
This commit is contained in:
Chandler Carruth 2013-06-24 07:21:35 +00:00
parent 37c6f84503
commit 6fb4e2cb42

View File

@ -20,6 +20,9 @@ DIRS := $(filter-out compiler-rt,$(DIRS))
# Don't build libcxx, it isn't designed to be built directly. # Don't build libcxx, it isn't designed to be built directly.
DIRS := $(filter-out libcxx,$(DIRS)) 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?) # Sparc cannot link shared libraries (libtool problem?)
ifeq ($(ARCH), Sparc) ifeq ($(ARCH), Sparc)
DIRS := $(filter-out sample, $(DIRS)) DIRS := $(filter-out sample, $(DIRS))