summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-03-29 18:14:00 +0000
committerChris Lattner <sabre@nondot.org>2007-03-29 18:14:00 +0000
commitc6b66ebba9e77ecc766780f4c860ec554f963855 (patch)
treef213090ca484686b628a4ab367e32d86b864dd52 /Makefile
parente2cd2a0b4bc4bcc059769d51fe40306c44e9e491 (diff)
downloadllvm-c6b66ebba9e77ecc766780f4c860ec554f963855.tar.gz
llvm-c6b66ebba9e77ecc766780f4c860ec554f963855.tar.bz2
llvm-c6b66ebba9e77ecc766780f4c860ec554f963855.tar.xz
don't build runtime for now, ever
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b6ee8b024d..a13be8ae0a 100644
--- a/Makefile
+++ b/Makefile
@@ -25,10 +25,12 @@ EXTRA_DIST := test llvm.spec include win32 Xcode
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))