[llvm-commits] [test-suite] r91456 - /test-suite/trunk/External/Makefile
Bob Wilson
bob.wilson at apple.com
Tue Dec 15 13:43:20 PST 2009
Author: bwilson
Date: Tue Dec 15 15:43:19 2009
New Revision: 91456
URL: http://llvm.org/viewvc/llvm-project?rev=91456&view=rev
Log:
Only run Nurbs on x86 and x86_64 architectures.
Modified:
test-suite/trunk/External/Makefile
Modified: test-suite/trunk/External/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/Makefile?rev=91456&r1=91455&r2=91456&view=diff
==============================================================================
--- test-suite/trunk/External/Makefile (original)
+++ test-suite/trunk/External/Makefile Tue Dec 15 15:43:19 2009
@@ -8,7 +8,12 @@
#
# Create the list of directories to compile
#
-PARALLEL_DIRS := SPEC Povray Namd FPGrowth BoxedSim Nurbs HMMER
+PARALLEL_DIRS := SPEC Povray Namd FPGrowth BoxedSim HMMER
+
+ifneq (,$(findstring x86,$(ARCH)))
+# Nurbs uses SSE and only works on x86 and x86_64.
+PARALLEL_DIRS += Nurbs
+endif
ifndef USE_POVRAY
PARALLEL_DIRS := $(filter-out Povray, $(PARALLEL_DIRS))
More information about the llvm-commits
mailing list