[llvm-commits] CVS: llvm/projects/Stacker/lib/Makefile

Reid Spencer reid at x10sys.com
Mon Oct 2 12:11:11 PDT 2006



Changes in directory llvm/projects/Stacker/lib:

Makefile updated: 1.6 -> 1.7
---
Log message:

Don't build the runtime library if LLVMGCC is not configured. 


---
Diffs of the changes:  (+5 -0)

 Makefile |    5 +++++
 1 files changed, 5 insertions(+)


Index: llvm/projects/Stacker/lib/Makefile
diff -u llvm/projects/Stacker/lib/Makefile:1.6 llvm/projects/Stacker/lib/Makefile:1.7
--- llvm/projects/Stacker/lib/Makefile:1.6	Fri May 13 12:42:54 2005
+++ llvm/projects/Stacker/lib/Makefile	Mon Oct  2 14:10:56 2006
@@ -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






More information about the llvm-commits mailing list