aboutsummaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/ExecutionEngine/Makefile')
-rw-r--r--unittests/ExecutionEngine/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/Makefile b/unittests/ExecutionEngine/Makefile
index ca1195631a..c779a6a47c 100644
--- a/unittests/ExecutionEngine/Makefile
+++ b/unittests/ExecutionEngine/Makefile
@@ -10,7 +10,10 @@
LEVEL = ../..
TESTNAME = ExecutionEngine
LINK_COMPONENTS :=interpreter
-PARALLEL_DIRS = JIT MCJIT
+
+ifeq ($(TARGET_HAS_JIT),1)
+ PARALLEL_DIRS = JIT MCJIT
+endif
include $(LEVEL)/Makefile.config
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest