[llvm-commits] CVS: llvm-test/MultiSource/Makefile.multisrc

Chris Lattner lattner at cs.uiuc.edu
Mon Sep 27 09:32:08 PDT 2004



Changes in directory llvm-test/MultiSource:

Makefile.multisrc updated: 1.44 -> 1.45
---
Log message:

Don't let failure to compile stop the test suite.  This should let the PPC
tester run all of the spec tests


---
Diffs of the changes:  (+3 -3)

Index: llvm-test/MultiSource/Makefile.multisrc
diff -u llvm-test/MultiSource/Makefile.multisrc:1.44 llvm-test/MultiSource/Makefile.multisrc:1.45
--- llvm-test/MultiSource/Makefile.multisrc:1.44	Sun Sep  5 02:56:52 2004
+++ llvm-test/MultiSource/Makefile.multisrc	Mon Sep 27 11:31:54 2004
@@ -47,20 +47,20 @@
 # GCC frontend, without running any optimizations.
 #
 Output/%.rbc: Output/%.ll $(LGCCAS)
-	$(LGCCAS) -disable-opt $< -o $@
+	-$(LGCCAS) -disable-opt $< -o $@
 
 ifndef USE_PRECOMPILED_BYTECODE
 
 $(PROGRAMS_TO_TEST:%=Output/%.linked.rbc): \
 Output/%.linked.rbc: $(LObjects) $(LGCCLDPROG)
-	$(LGCCLDPROG) -link-as-library -disable-opt $(LObjects) -o $@
+	-$(LGCCLDPROG) -link-as-library -disable-opt $(LObjects) -o $@
 
 # Output/*.linked.ll is all of the bytecode files of the program linked together
 # without any libraries linked in...
 #
 $(PROGRAMS_TO_TEST:%=Output/%.linked.rll): \
 Output/%.linked.rll: Output/%.linked.rbc $(LDIS)
-	$(LDIS) $< -o $@ -f
+	-$(LDIS) $< -o $@ -f
 
 $(PROGRAMS_TO_TEST:%=Output/%.LOC.txt): \
 Output/%.LOC.txt: $(Source)






More information about the llvm-commits mailing list