summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/examples/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/examples/Makefile b/llvm/examples/Makefile
index fc3a7d4ea3f..0737eaf5790 100644
--- a/llvm/examples/Makefile
+++ b/llvm/examples/Makefile
@@ -17,7 +17,12 @@ PARALLEL_DIRS += ParallelJIT
endif
ifeq ($(LLVM_ON_UNIX),1)
-PARALLEL_DIRS += ExceptionDemo
+ ifeq ($(ARCH),x86)
+ PARALLEL_DIRS += ExceptionDemo
+ endif
+ ifeq ($(ARCH),x86_64)
+ PARALLEL_DIRS += ExceptionDemo
+ endif
endif
include $(LEVEL)/Makefile.common
OpenPOWER on IntegriCloud