From 76907e3dafe59fd29d0e5a17263566164904b117 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 2 Oct 2006 19:10:56 +0000 Subject: [PATCH] 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 --- projects/Stacker/lib/Makefile | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.34.1