Allow PackedType to be constructed with an abstract type.
[oota-llvm.git] / runtime / Makefile
index 3ddf2bdf43b04c4e19abd1941016222f0c3e31ef..d1165800c75b38616c4f36cbb06f3d8d69f68433 100644 (file)
 LEVEL = ..
 include $(LEVEL)/Makefile.config
 
-ifneq ($(wildcard $(LLVMGCCDIR)),)
-PARALLEL_DIRS  := GCCLibraries  libdummy  libprofile  libtrace GC
+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  := GCCLibraries  libdummy libprofile GC
 else
 PARALLEL_DIRS  := 
 install all ::
-       @echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Double-check 
+       @echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Check 
        @echo '********' Warning: llvm/Makefile.config to make sure it matches
-       @echo '********' Warning: the directory where the C front-end is installed,
-       @echo '********' Warning: and re-run configure if it does not.
+       @echo '********' Warning: the directory where the C front-end is
+       @echo '********' Warning: installed,and re-run configure if it does not.
+endif
+
+# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
+# build on Sparc
+ifeq ($(ARCH), Sparc)
+PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
+endif
 endif
 
 include $(LEVEL)/Makefile.common
@@ -27,6 +41,3 @@ include $(LEVEL)/Makefile.common
 #
 install::
 
-clean::
-       $(VERB) rm -f $(DESTLIBBYTECODE)/*
-