mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
78cee19819
SUMMARY: 1. This patch provided API for decoding the traceback table info and unit test for the these API. 2. Another patchs will do the following things: 2.1 added a new option --traceback-table to decode the trace back table information for xcoff object file when using llvm-objdump to disassemble the xcoff objfile. 2.2 print out the traceback table information for llvm-objdump. Reviewers: Jason liu, Hubert Tong, James Henderson Differential Revision: https://reviews.llvm.org/D81585
19 lines
336 B
CMake
19 lines
336 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BinaryFormat
|
|
Object
|
|
)
|
|
|
|
add_llvm_unittest(ObjectTests
|
|
ArchiveTest.cpp
|
|
ELFObjectFileTest.cpp
|
|
ELFTypesTest.cpp
|
|
ELFTest.cpp
|
|
MinidumpTest.cpp
|
|
ObjectFileTest.cpp
|
|
SymbolSizeTest.cpp
|
|
SymbolicFileTest.cpp
|
|
XCOFFObjectFileTest.cpp
|
|
)
|
|
|
|
target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)
|