From: Chris Lattner Date: Thu, 29 Mar 2007 18:14:00 +0000 (+0000) Subject: don't build runtime for now, ever X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c6b66ebba9e77ecc766780f4c860ec554f963855;p=oota-llvm.git don't build runtime for now, ever git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35470 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile b/Makefile index b6ee8b024d2..a13be8ae0a3 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))