[llvm-commits] CVS: llvm/runtime/Makefile
Misha Brukman
brukman at cs.uiuc.edu
Wed Sep 8 13:30:37 PDT 2004
Changes in directory llvm/runtime:
Makefile updated: 1.20 -> 1.21
---
Log message:
Disable libprofile as it breaks the build on Sparc (autoconf issues).
---
Diffs of the changes: (+6 -0)
Index: llvm/runtime/Makefile
diff -u llvm/runtime/Makefile:1.20 llvm/runtime/Makefile:1.21
--- llvm/runtime/Makefile:1.20 Fri Sep 3 18:19:53 2004
+++ llvm/runtime/Makefile Wed Sep 8 15:30:26 2004
@@ -21,6 +21,12 @@
@echo '********' Warning: 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
+
include $(LEVEL)/Makefile.common
# Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs
More information about the llvm-commits
mailing list