1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

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
This commit is contained in:
Jyotsna Verma 2013-04-05 14:26:16 +00:00
parent 045c5fae3d
commit 3dc90eb23f

View File

@ -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