[llvm-commits] [test-suite] r101767 - /test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile

Daniel Dunbar daniel at zuster.org
Sun Apr 18 21:01:01 PDT 2010


Author: ddunbar
Date: Sun Apr 18 23:01:01 2010
New Revision: 101767

URL: http://llvm.org/viewvc/llvm-project?rev=101767&view=rev
Log:
Don't build office-ispell when TARGET_ARCH == ARM. This is a lame substitute for
implementing a configure check... patches welcome if this bothers you.

Modified:
    test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile

Modified: test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile?rev=101767&r1=101766&r2=101767&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/MiBench/Makefile Sun Apr 18 23:01:01 2010
@@ -23,5 +23,10 @@
    telecomm-adpcm \
    telecomm-gsm
 
-include $(LEVEL)/Makefile.programs
+# FIXME: This is a hack, office-ispell requires termio which is less likely to
+# be available on an embedded target. We should have configure support for this.
+ifeq ($(TARGET_ARCH),ARM)
+  PARALLEL_DIRS := $(filter-out office-ispell, $(PARALLEL_DIRS))
+endif
 
+include $(LEVEL)/Makefile.programs





More information about the llvm-commits mailing list