diff options
author | Chris Lattner <sabre@nondot.org> | 2007-09-11 17:12:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-09-11 17:12:32 +0000 |
commit | 69c1b10993dfe721da90db5a23f00144ae7000ce (patch) | |
tree | e6ea4bac63647f741a9134fefb965b92658cd0d8 | |
parent | e09791c399e84199dd057a8cfcdcbd72cc9caf2f (diff) | |
download | bcm5719-llvm-69c1b10993dfe721da90db5a23f00144ae7000ce.tar.gz bcm5719-llvm-69c1b10993dfe721da90db5a23f00144ae7000ce.zip |
Reenable libgc and libprofile is explicitly requested.
llvm-svn: 41851
-rw-r--r-- | llvm/runtime/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/llvm/runtime/Makefile b/llvm/runtime/Makefile index a63c66b3b0f..99a5e0cb939 100644 --- a/llvm/runtime/Makefile +++ b/llvm/runtime/Makefile @@ -10,15 +10,8 @@ LEVEL = .. include $(LEVEL)/Makefile.config -ifeq ($(LLVMGCC_MAJVERS),4) -PARALLEL_DIRS := -install all:: - $(Echo) "Warning: These runtime libraries only need to be built with" - $(Echo) "Warning: llvm-gcc version 3. They are automatically included" - $(Echo) "Warning: with llvm-gcc version 4 and beyond" -else ifneq ($(wildcard $(LLVMGCC)),) -PARALLEL_DIRS := libdummy libprofile GC +PARALLEL_DIRS := libprofile GC else PARALLEL_DIRS := install all :: @@ -33,7 +26,6 @@ endif ifeq ($(ARCH), Sparc) PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS)) endif -endif include $(LEVEL)/Makefile.common |