summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-09-11 17:12:32 +0000
committerChris Lattner <sabre@nondot.org>2007-09-11 17:12:32 +0000
commit95bb69acbcec9a2e162875e7a940ccede90fd3f9 (patch)
treec1d61ad9480c49d79a265fda7fa206f40832e908 /runtime
parent210329a02562d196834eb2d4e1afcd7d9e37e87d (diff)
downloadllvm-95bb69acbcec9a2e162875e7a940ccede90fd3f9.tar.gz
llvm-95bb69acbcec9a2e162875e7a940ccede90fd3f9.tar.bz2
llvm-95bb69acbcec9a2e162875e7a940ccede90fd3f9.tar.xz
Reenable libgc and libprofile is explicitly requested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41851 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index a63c66b3b0..99a5e0cb93 100644
--- a/runtime/Makefile
+++ b/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