[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile.spec

Chris Lattner lattner at cs.uiuc.edu
Tue Feb 10 10:27:02 PST 2004


Changes in directory llvm/test/Programs/External/SPEC:

Makefile.spec updated: 1.21 -> 1.22

---
Log message:

Give bugpoint a chance of actually working out-of-the-box, by linking in
libraries so that all symbols (such as __main) are resolved.  This should
make the 'bugpoint-gccas' "just work".


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

Index: llvm/test/Programs/External/SPEC/Makefile.spec
diff -u llvm/test/Programs/External/SPEC/Makefile.spec:1.21 llvm/test/Programs/External/SPEC/Makefile.spec:1.22
--- llvm/test/Programs/External/SPEC/Makefile.spec:1.21	Thu Dec 18 21:32:09 2003
+++ llvm/test/Programs/External/SPEC/Makefile.spec	Tue Feb 10 10:25:53 2004
@@ -46,8 +46,8 @@
 include $(LEVEL)/test/Programs/MultiSource/Makefile.multisrc
 
 # Do not pass -Wall to compile commands...
-LCCFLAGS  := -O2
-LCXXFLAGS := -O2
+LCCFLAGS  := -O3
+LCXXFLAGS := -O3
 
 CPPFLAGS += -DSPEC_CPU2000 -I $(SPEC_BENCH_DIR)/src/
 SPEC_SANDBOX := $(LLVM_SRC_ROOT)/test/Programs/External/SPEC/Sandbox.sh
@@ -133,14 +133,14 @@
 
 # Rules to bugpoint the GCCAS, GCCLD, LLC, or LLI commands...
 $(PROGRAMS_TO_TEST:%=Output/%.bugpoint-gccas): \
-Output/%.bugpoint-gccas: Output/%.linked.rll $(LBUGPOINT) \
+Output/%.bugpoint-gccas: Output/%.noopt-llvm.bc $(LBUGPOINT) \
                          Output/gccas-pass-args Output/%.out-nat
 	$(SPEC_SANDBOX) bugpoint-$(RUN_TYPE) $@ $(REF_IN_DIR) \
 	    $(LBUGPOINT) ../../$< `cat Output/gccas-pass-args` $(BUGPOINT_OPTIONS)
 	@echo "===> Leaving Output/bugpoint-$(RUN_TYPE)"
 
 $(PROGRAMS_TO_TEST:%=Output/%.bugpoint-gccld): \
-Output/%.bugpoint-gccld: Output/%.linked.bc $(LBUGPOINT) \
+Output/%.bugpoint-gccld: Output/%.noopt-llvm.bc $(LBUGPOINT) \
                          Output/gccld-pass-args Output/%.out-nat
 	$(SPEC_SANDBOX) bugpoint-$(RUN_TYPE) $@ $(REF_IN_DIR) \
 	    $(LBUGPOINT) ../../$< `cat Output/gccld-pass-args` $(BUGPOINT_OPTIONS)





More information about the llvm-commits mailing list