2012-06-21 17:51:26 +08:00
|
|
|
set(LLVM_LINK_COMPONENTS
|
2013-12-10 19:13:32 +08:00
|
|
|
Core
|
|
|
|
ExecutionEngine
|
|
|
|
Interpreter
|
2014-07-14 13:01:53 +08:00
|
|
|
MC
|
2015-02-23 08:36:25 +08:00
|
|
|
OrcJIT
|
2015-02-16 10:13:30 +08:00
|
|
|
RuntimeDyld
|
2013-12-10 19:13:32 +08:00
|
|
|
Support
|
2012-06-21 17:51:26 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
add_llvm_unittest(ExecutionEngineTests
|
|
|
|
ExecutionEngineTest.cpp
|
|
|
|
)
|
|
|
|
|
2015-02-23 08:36:25 +08:00
|
|
|
add_subdirectory(Orc)
|
|
|
|
|
2014-09-03 06:28:02 +08:00
|
|
|
# Include MCJIT tests only if native arch is a built JIT target.
|
2014-06-08 10:45:56 +08:00
|
|
|
list(FIND LLVM_TARGETS_TO_BUILD "${LLVM_NATIVE_ARCH}" build_idx)
|
|
|
|
list(FIND LLVM_TARGETS_WITH_JIT "${LLVM_NATIVE_ARCH}" jit_idx)
|
|
|
|
if (NOT build_idx LESS 0 AND NOT jit_idx LESS 0)
|
2013-03-28 11:38:29 +08:00
|
|
|
add_subdirectory(MCJIT)
|
|
|
|
endif()
|