diff options
author | Jyotsna Verma <jverma@codeaurora.org> | 2013-04-05 14:26:16 +0000 |
---|---|---|
committer | Jyotsna Verma <jverma@codeaurora.org> | 2013-04-05 14:26:16 +0000 |
commit | b1180dc6d959bffa615f5a3ef041a1eef76a26de (patch) | |
tree | 67be8d7b02170ff5d3a4ff76e2f648ed60f233fd /llvm/unittests/ExecutionEngine | |
parent | b85654d3cdca0d8a444aed99ada2047a74987d22 (diff) | |
download | bcm5719-llvm-b1180dc6d959bffa615f5a3ef041a1eef76a26de.tar.gz bcm5719-llvm-b1180dc6d959bffa615f5a3ef041a1eef76a26de.zip |
Enable JIT/MCJIT unit tests for targets with JIT support.
Change unittests/ExecutionEngine/Makefile to include Makefile.config before
TARGET_HAS_JIT flag is checked.
Fixes bug: http://llvm.org/bugs/show_bug.cgi?id=15669
llvm-svn: 178871
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/Makefile b/llvm/unittests/ExecutionEngine/Makefile index c779a6a47c1..38e667ff988 100644 --- a/llvm/unittests/ExecutionEngine/Makefile +++ b/llvm/unittests/ExecutionEngine/Makefile @@ -11,9 +11,10 @@ LEVEL = ../.. TESTNAME = ExecutionEngine LINK_COMPONENTS :=interpreter +include $(LEVEL)/Makefile.config + ifeq ($(TARGET_HAS_JIT),1) - PARALLEL_DIRS = JIT MCJIT + PARALLEL_DIRS = JIT MCJIT endif -include $(LEVEL)/Makefile.config include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest |