X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=projects%2FMakefile;h=1318a35d941ef9548642d9392447e20b5d1b39e7;hb=2bf4b54a800c2dd44c0a5939fe629ea120bee2ad;hp=491d596eca9abe4d7e358906003c84f9bae3ae95;hpb=d58816f898bc3a58ccfbad2bc149e4dce211db8a;p=oota-llvm.git diff --git a/projects/Makefile b/projects/Makefile index 491d596eca9..1318a35d941 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -14,9 +14,12 @@ 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. +# Don't build compiler-rt, it isn't designed to be built directly. DIRS := $(filter-out compiler-rt,$(DIRS)) +# Don't build libcxx, it isn't designed to be built directly. +DIRS := $(filter-out libcxx,$(DIRS)) + # Sparc cannot link shared libraries (libtool problem?) ifeq ($(ARCH), Sparc) DIRS := $(filter-out sample, $(DIRS))