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

Misha Brukman brukman at cs.uiuc.edu
Wed Dec 29 12:44:44 PST 2004



Changes in directory llvm-test/MultiSource/Benchmarks/FreeBench:

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

SparcV8 cannot handle analyzer (runs machine out of memory) so disable it


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

Index: llvm-test/MultiSource/Benchmarks/FreeBench/Makefile
diff -u llvm-test/MultiSource/Benchmarks/FreeBench/Makefile:1.3 llvm-test/MultiSource/Benchmarks/FreeBench/Makefile:1.4
--- llvm-test/MultiSource/Benchmarks/FreeBench/Makefile:1.3	Wed Sep  1 09:33:21 2004
+++ llvm-test/MultiSource/Benchmarks/FreeBench/Makefile	Wed Dec 29 14:44:34 2004
@@ -1,6 +1,11 @@
 # MultiSource/Olden Makefile:  Build all subdirectories automatically
 
 LEVEL = ../../..
-PARALLEL_DIRS  := distray mason pcompress2 analyzer fourinarow neural pifft
+PARALLEL_DIRS = distray mason pcompress2 analyzer fourinarow neural pifft
+
+# SparcV8 can't handle analyzer, but we can't separate V8 from V9 now
+ifeq ($(ARCH),Sparc)
+PARALLEL_DIRS := $(filter-out analyzer, $(PARALLEL_DIRS))
+endif
 
 include $(LEVEL)/Makefile.programs






More information about the llvm-commits mailing list