[llvm] r184697 - Filter out dragonegg when checked out into a projects subdirectory.
Chandler Carruth
chandlerc at gmail.com
Mon Jun 24 00:21:35 PDT 2013
Author: chandlerc
Date: Mon Jun 24 02:21:35 2013
New Revision: 184697
URL: http://llvm.org/viewvc/llvm-project?rev=184697&view=rev
Log:
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.
Modified:
llvm/trunk/projects/Makefile
Modified: llvm/trunk/projects/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/Makefile?rev=184697&r1=184696&r2=184697&view=diff
==============================================================================
--- llvm/trunk/projects/Makefile (original)
+++ llvm/trunk/projects/Makefile Mon Jun 24 02:21:35 2013
@@ -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))
More information about the llvm-commits
mailing list