mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
fdc7cc8bf4
Remove unused link components for PowerPC target unittest according to post commit comments. This is a redo for a previous commit "fc4e43ad618b" that removed a few components that are necessary when libraries are to be built shared (i.e., BUILD_SHARED_LIBS=ON).
18 lines
266 B
CMake
18 lines
266 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/lib/Target/PowerPC
|
|
${CMAKE_BINARY_DIR}/lib/Target/PowerPC
|
|
)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
MC
|
|
Support
|
|
Target
|
|
PowerPCCodeGen
|
|
PowerPCDesc
|
|
PowerPCInfo
|
|
)
|
|
|
|
add_llvm_unittest(PowerPCTests
|
|
AIXRelocModelTest.cpp
|
|
)
|