[llvm-commits] [llvm] r41851 - /llvm/trunk/runtime/Makefile
Chris Lattner
sabre at nondot.org
Tue Sep 11 10:12:32 PDT 2007
Author: lattner
Date: Tue Sep 11 12:12:32 2007
New Revision: 41851
URL: http://llvm.org/viewvc/llvm-project?rev=41851&view=rev
Log:
Reenable libgc and libprofile is explicitly requested.
Modified:
llvm/trunk/runtime/Makefile
Modified: llvm/trunk/runtime/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/runtime/Makefile?rev=41851&r1=41850&r2=41851&view=diff
==============================================================================
--- llvm/trunk/runtime/Makefile (original)
+++ llvm/trunk/runtime/Makefile Tue Sep 11 12:12:32 2007
@@ -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 @@
ifeq ($(ARCH), Sparc)
PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
endif
-endif
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list