[llvm-commits] CVS: reopt/test/TEST.reopt.Makefile

Brian Gaeke gaeke at cs.uiuc.edu
Sat Dec 18 02:25:45 PST 2004



Changes in directory reopt/test:

TEST.reopt.Makefile updated: 1.31 -> 1.32
---
Log message:

We need to pass LDFLAGS on the link line for some benchmarks to link
correctly.


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

Index: reopt/test/TEST.reopt.Makefile
diff -u reopt/test/TEST.reopt.Makefile:1.31 reopt/test/TEST.reopt.Makefile:1.32
--- reopt/test/TEST.reopt.Makefile:1.31	Thu Dec  9 11:07:20 2004
+++ reopt/test/TEST.reopt.Makefile	Sat Dec 18 04:25:34 2004
@@ -59,7 +59,7 @@
 # compiler.
 $(PROGRAMS_TO_TEST:%=Output/%.reopt-llc): \
 Output/%.reopt-llc: Output/%.reopt-llc.s $(REOPTIMIZER_LIB)
-	-$(CXX) $(CFLAGS) $(PROFILE) $< -o $@ $(REOPTIMIZER_LIB) $(REOPTIMIZER_SOLARISLIBS)
+	-$(CXX) $(CFLAGS) $(PROFILE) $< -o $@ $(LDFLAGS) $(REOPTIMIZER_LIB) $(REOPTIMIZER_SOLARISLIBS)
 	@if test -x $@; then echo "PASS: reopt-link $(TESTNAME)"; \
 	else echo "FAIL: reopt-link $(TESTNAME)"; fi
 






More information about the llvm-commits mailing list