[llvm-commits] CVS: llvm/Makefile
Chris Lattner
sabre at nondot.org
Thu Mar 29 11:14:17 PDT 2007
Changes in directory llvm:
Makefile updated: 1.70 -> 1.71
---
Log message:
don't build runtime for now, ever
---
Diffs of the changes: (+5 -3)
Makefile | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Index: llvm/Makefile
diff -u llvm/Makefile:1.70 llvm/Makefile:1.71
--- llvm/Makefile:1.70 Wed Feb 21 00:23:20 2007
+++ llvm/Makefile Thu Mar 29 13:14:00 2007
@@ -25,10 +25,12 @@
include $(LEVEL)/Makefile.config
-# llvm-gcc4 doesn't need runtime libs.
-ifeq ($(LLVMGCC_MAJVERS),4)
+# llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one.
+# FIXME: Remove runtime entirely once we have an understanding of where
+# libprofile etc should go.
+#ifeq ($(LLVMGCC_MAJVERS),4)
DIRS := $(filter-out runtime, $(DIRS))
-endif
+#endif
ifeq ($(MAKECMDGOALS),libs-only)
DIRS := $(filter-out tools runtime docs, $(DIRS))
More information about the llvm-commits
mailing list