OSDN Git Service

Reenable libgc and libprofile is explicitly requested.
authorChris Lattner <sabre@nondot.org>
Tue, 11 Sep 2007 17:12:32 +0000 (17:12 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 11 Sep 2007 17:12:32 +0000 (17:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41851 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/Makefile

index a63c66b..99a5e0c 100644 (file)
 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