mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
6609482707
comparison of symbol names. SymbolStringPool is a thread-safe string pool that will be used in upcoming Orc APIs to facilitate efficient storage and fast comparison of symbol name strings. llvm-svn: 319839
28 lines
509 B
CMake
28 lines
509 B
CMake
|
|
set(LLVM_LINK_COMPONENTS
|
|
Core
|
|
ExecutionEngine
|
|
Object
|
|
OrcJIT
|
|
RuntimeDyld
|
|
Support
|
|
native
|
|
)
|
|
|
|
add_llvm_unittest(OrcJITTests
|
|
CompileOnDemandLayerTest.cpp
|
|
IndirectionUtilsTest.cpp
|
|
GlobalMappingLayerTest.cpp
|
|
LazyEmittingLayerTest.cpp
|
|
ObjectTransformLayerTest.cpp
|
|
OrcCAPITest.cpp
|
|
OrcTestCommon.cpp
|
|
QueueChannel.cpp
|
|
RemoteObjectLayerTest.cpp
|
|
RPCUtilsTest.cpp
|
|
RTDyldObjectLinkingLayerTest.cpp
|
|
SymbolStringPoolTest.cpp
|
|
)
|
|
|
|
target_link_libraries(OrcJITTests ${LLVM_PTHREAD_LIB})
|