[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Chris Lattner
lattner at cs.uiuc.edu
Mon May 12 11:11:03 PDT 2003
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.45 -> 1.46
---
Log message:
Use the native output when running bugpoint
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.45 llvm/test/Programs/Makefile.programs:1.46
--- llvm/test/Programs/Makefile.programs:1.45 Sun May 11 17:41:23 2003
+++ llvm/test/Programs/Makefile.programs Mon May 12 11:10:00 2003
@@ -177,12 +177,15 @@
# Rules to bugpoint the GCCAS or GCCLD command...
$(PROGRAMS_TO_TEST:%=Output/%.bugpoint-gccas): \
-Output/%.bugpoint-gccas: Output/%.linked.rll $(LBUGPOINT) Output/gccas-pass-args
- $(LBUGPOINT) $< `cat Output/gccas-pass-args` $(BUGPOINT_OPTIONS)
+Output/%.bugpoint-gccas: Output/%.linked.rll $(LBUGPOINT) \
+ Output/gccas-pass-args Output/%.out-nat
+ $(LBUGPOINT) $< `cat Output/gccas-pass-args` $(BUGPOINT_OPTIONS) \
+ -output=Output/$*.out-nat
$(PROGRAMS_TO_TEST:%=Output/%.bugpoint-gccld): \
-Output/%.bugpoint-gccld: Output/%.linked.bc $(LBUGPOINT) Output/gccld-pass-args
- $(LBUGPOINT) $< `cat Output/gccld-pass-args` $(BUGPOINT_OPTIONS)
-
+Output/%.bugpoint-gccld: Output/%.linked.bc $(LBUGPOINT) \
+ Output/gccld-pass-args Output/%.out-nat
+ $(LBUGPOINT) $< `cat Output/gccld-pass-args` $(BUGPOINT_OPTIONS) \
+ -output=Output/$*.out-nat
#
# Rules to compile the program for the C Back End
#
@@ -211,7 +214,6 @@
#
# Rules to execute the program
#
-RUN_OPTIONS += 2>&1
ifdef INPUT_FILENAME
RUN_OPTIONS += < $(INPUT_FILENAME)
BUGPOINT_OPTIONS += -input $(INPUT_FILENAME)
More information about the llvm-commits
mailing list