From: Reid Spencer Date: Mon, 2 Oct 2006 19:10:56 +0000 (+0000) Subject: Don't build the runtime library if LLVMGCC is not configured. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=76907e3dafe59fd29d0e5a17263566164904b117;p=oota-llvm.git Don't build the runtime library if LLVMGCC is not configured. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30691 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/projects/Stacker/lib/Makefile b/projects/Stacker/lib/Makefile index a302a85ef51..bee436b83fb 100644 --- a/projects/Stacker/lib/Makefile +++ b/projects/Stacker/lib/Makefile @@ -7,4 +7,9 @@ LEVEL = .. DIRS = compiler runtime +# Don't generate the runtime if we don't have LLVMGCC +ifeq ($(LLVMGCC),) + DIRS := $(filter-out runtime, $(DIRS)) +endif + include $(LEVEL)/Makefile.common