mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
5fae3540d3
This aims to fix the failure at https://lab.llvm.org/buildbot/#/builders/61/builds/9590.
36 lines
672 B
CMake
36 lines
672 B
CMake
|
|
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
IRReader
|
|
JITLink
|
|
Object
|
|
OrcJIT
|
|
OrcShared
|
|
OrcTargetProcess
|
|
Passes
|
|
RuntimeDyld
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_unittest(OrcJITTests
|
|
CoreAPIsTest.cpp
|
|
IndirectionUtilsTest.cpp
|
|
JITTargetMachineBuilderTest.cpp
|
|
LazyCallThroughAndReexportsTest.cpp
|
|
ObjectLinkingLayerTest.cpp
|
|
OrcCAPITest.cpp
|
|
OrcTestCommon.cpp
|
|
QueueChannel.cpp
|
|
ResourceTrackerTest.cpp
|
|
RPCUtilsTest.cpp
|
|
RTDyldObjectLinkingLayerTest.cpp
|
|
SymbolStringPoolTest.cpp
|
|
ThreadSafeModuleTest.cpp
|
|
)
|
|
|
|
target_link_libraries(OrcJITTests PRIVATE
|
|
LLVMTestingSupport
|
|
${ORC_JIT_TEST_LIBS})
|