mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
a17a111e61
The archive library truncated the size of archive members whose size was greater than max uint32_t. This patch fixes the issue and adds some unit tests to verify. Reviewed by: ruiu, MaskRay, grimar, rupprecht Differential Revision: https://reviews.llvm.org/D75742
15 lines
253 B
CMake
15 lines
253 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
BinaryFormat
|
|
Object
|
|
)
|
|
|
|
add_llvm_unittest(ObjectTests
|
|
ArchiveTest.cpp
|
|
MinidumpTest.cpp
|
|
ObjectFileTest.cpp
|
|
SymbolSizeTest.cpp
|
|
SymbolicFileTest.cpp
|
|
)
|
|
|
|
target_link_libraries(ObjectTests PRIVATE LLVMTestingSupport)
|