mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
b648972d95
rL319838 introduced SymbolStringPool which uses 8 byte atomics for reference counters. On systems which do not support such atomics natively such as MIPS32, explicitly add libatomic as one of the libraries for SymbolStringPool's unittest. Reviewers: lhames, beanz Differential Revision: https://reviews.llvm.org/D41010 llvm-svn: 321225
33 lines
649 B
CMake
33 lines
649 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
|
|
)
|
|
|
|
set(ORC_JIT_TEST_LIBS ${LLVM_PTHREAD_LIB})
|
|
if(NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB)
|
|
list(APPEND ORC_JIT_TEST_LIBS atomic)
|
|
endif()
|
|
|
|
target_link_libraries(OrcJITTests PRIVATE ${ORC_JIT_TEST_LIBS})
|