mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
3dc90eb23f
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
21 lines
557 B
Makefile
21 lines
557 B
Makefile
##===- unittests/ExecutionEngine/Makefile ------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
TESTNAME = ExecutionEngine
|
|
LINK_COMPONENTS :=interpreter
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
ifeq ($(TARGET_HAS_JIT),1)
|
|
PARALLEL_DIRS = JIT MCJIT
|
|
endif
|
|
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|