mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
1a679fd432
This missing dependency has caused build failures when `BUILD_SHARED_LIBS` is set to `ON`. The breaking change was introduced here: * https://reviews.llvm.org/D91324 Failing buildbot: * http://lab.llvm.org:8011/#/builders/66/builds/555
50 lines
946 B
CMake
50 lines
946 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Analysis
|
|
AsmParser
|
|
Core
|
|
Support
|
|
Passes
|
|
TransformUtils
|
|
ScalarOpts
|
|
)
|
|
|
|
add_llvm_unittest(IRTests
|
|
AbstractCallSiteTest.cpp
|
|
AsmWriterTest.cpp
|
|
AttributesTest.cpp
|
|
BasicBlockTest.cpp
|
|
CFGBuilder.cpp
|
|
ConstantRangeTest.cpp
|
|
ConstantsTest.cpp
|
|
DataLayoutTest.cpp
|
|
DebugInfoTest.cpp
|
|
DebugTypeODRUniquingTest.cpp
|
|
DemandedBitsTest.cpp
|
|
DominatorTreeTest.cpp
|
|
DominatorTreeBatchUpdatesTest.cpp
|
|
FunctionTest.cpp
|
|
PassBuilderCallbacksTest.cpp
|
|
IRBuilderTest.cpp
|
|
InstructionsTest.cpp
|
|
IntrinsicsTest.cpp
|
|
LegacyPassManagerTest.cpp
|
|
MDBuilderTest.cpp
|
|
ManglerTest.cpp
|
|
MetadataTest.cpp
|
|
ModuleTest.cpp
|
|
PassManagerTest.cpp
|
|
PatternMatch.cpp
|
|
TimePassesTest.cpp
|
|
TypesTest.cpp
|
|
UseTest.cpp
|
|
UserTest.cpp
|
|
ValueHandleTest.cpp
|
|
ValueMapTest.cpp
|
|
ValueTest.cpp
|
|
VectorTypesTest.cpp
|
|
VerifierTest.cpp
|
|
VPIntrinsicTest.cpp
|
|
)
|
|
|
|
target_link_libraries(IRTests PRIVATE LLVMTestingSupport)
|