mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
46a7f5a6dc
the tests pass on Linux. Summary: This change implements readFromExe, and calculating VA and RVA, which are some of the functionalities that will be used for native PDB reading for llvm symbolizer. bug: https://bugs.llvm.org/show_bug.cgi?id=41795
16 lines
324 B
CMake
16 lines
324 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
DebugInfoCodeView
|
|
DebugInfoMSF
|
|
DebugInfoPDB
|
|
)
|
|
|
|
add_llvm_unittest_with_input_files(DebugInfoPDBTests
|
|
HashTableTest.cpp
|
|
NativeSessionTest.cpp
|
|
NativeSymbolReuseTest.cpp
|
|
StringTableBuilderTest.cpp
|
|
PDBApiTest.cpp
|
|
)
|
|
|
|
target_link_libraries(DebugInfoPDBTests PRIVATE LLVMTestingSupport)
|