[llvm-commits] [llvm] r93729 - /llvm/trunk/projects/Makefile

Daniel Dunbar daniel at zuster.org
Mon Jan 18 09:52:29 PST 2010


Author: ddunbar
Date: Mon Jan 18 11:52:28 2010
New Revision: 93729

URL: http://llvm.org/viewvc/llvm-project?rev=93729&view=rev
Log:
Don't try to build compiler-rt if it happens to be checked out into projects/

Modified:
    llvm/trunk/projects/Makefile

Modified: llvm/trunk/projects/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/Makefile?rev=93729&r1=93728&r2=93729&view=diff

==============================================================================
--- llvm/trunk/projects/Makefile (original)
+++ llvm/trunk/projects/Makefile Mon Jan 18 11:52:28 2010
@@ -14,6 +14,9 @@
 # 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))





More information about the llvm-commits mailing list