OSDN Git Service

Don't build the runtime library if LLVMGCC is not configured.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 2 Oct 2006 19:10:56 +0000 (19:10 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 2 Oct 2006 19:10:56 +0000 (19:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30691 91177308-0d34-0410-b5e6-96231b3b80d8

projects/Stacker/lib/Makefile

index a302a85..bee436b 100644 (file)
@@ -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