[llvm-commits] [test-suite] r99432 - /test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile
Gabor Greif
ggreif at gmail.com
Wed Mar 24 14:34:47 PDT 2010
Author: ggreif
Date: Wed Mar 24 16:34:47 2010
New Revision: 99432
URL: http://llvm.org/viewvc/llvm-project?rev=99432&view=rev
Log:
fix out-of-tree build (modelled after MultiSource/Applications/lemon)
Modified:
test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile
Modified: test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile?rev=99432&r1=99431&r2=99432&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/PAQ8p/Makefile Wed Mar 24 16:34:47 2010
@@ -4,8 +4,8 @@
CPPFLAGS += -DNOASM -DLLVM
LDFLAGS = -lstdc++ -lm
ifdef SMALL_PROBLEM_SIZE
-RUN_OPTIONS = -1 file1.in
+RUN_OPTIONS = -1 $(PROJ_SRC_DIR)/file1.in
else
-RUN_OPTIONS = -4 file1.in
+RUN_OPTIONS = -4 $(PROJ_SRC_DIR)/file1.in
endif
include $(LEVEL)/MultiSource/Makefile.multisrc
More information about the llvm-commits
mailing list