mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
d35d99b735
SymbolStringPool ref counts are now size_t, rather than uint64_t, so I do not think this is necessary any more. llvm-svn: 340704
30 lines
564 B
CMake
30 lines
564 B
CMake
|
|
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
Object
|
|
OrcJIT
|
|
RuntimeDyld
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_unittest(OrcJITTests
|
|
CompileOnDemandLayerTest.cpp
|
|
CoreAPIsTest.cpp
|
|
IndirectionUtilsTest.cpp
|
|
GlobalMappingLayerTest.cpp
|
|
LazyEmittingLayerTest.cpp
|
|
LegacyAPIInteropTest.cpp
|
|
ObjectTransformLayerTest.cpp
|
|
OrcCAPITest.cpp
|
|
OrcTestCommon.cpp
|
|
QueueChannel.cpp
|
|
RemoteObjectLayerTest.cpp
|
|
RPCUtilsTest.cpp
|
|
RTDyldObjectLinkingLayerTest.cpp
|
|
SymbolStringPoolTest.cpp
|
|
)
|
|
|
|
target_link_libraries(OrcJITTests PRIVATE ${ORC_JIT_TEST_LIBS})
|