[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile

Tanya Brethour tbrethou at cs.uiuc.edu
Fri Dec 10 10:08:24 PST 2004



Changes in directory llvm-test/MultiSource/Benchmarks/Prolangs-C:

Makefile updated: 1.3 -> 1.4
---
Log message:

Disable bison for sparc. Its not appearing in the sparc results anyways. Its failures are slowing down the tester.


---
Diffs of the changes:  (+12 -0)

Index: llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile
diff -u llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile:1.3 llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile:1.4
--- llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile:1.3	Wed Oct 27 00:58:12 2004
+++ llvm-test/MultiSource/Benchmarks/Prolangs-C/Makefile	Fri Dec 10 12:08:08 2004
@@ -2,4 +2,16 @@
 PARALLEL_DIRS  := TimberWolfMC agrep allroots archie-client assembler bison \
       cdecl compiler dixie fixoutput football gnugo loader \
       plot2fig simulator unix-smail unix-tbl
+
+# Get the $(ARCH) setting
+include $(LEVEL)/Makefile.config
+
+# Disable bison due to insane running times of bison.native
+ifeq ($(ARCH), Sparc)
+PARALLEL_DIRS := $(filter-out bison, $(PARALLEL_DIRS))
+endif
+
+
+
+
 include $(LEVEL)/Makefile.programs






More information about the llvm-commits mailing list