mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
49ec888ed3
This patch adds the --load-address command line option to llvm-pdbdump, which dumps all addresses assuming the module has loaded at the specified address. Additionally, this patch adds an option to llvm-pdbdump to support dumping of public symbols (i.e. symbols with external linkage). llvm-svn: 236342
19 lines
316 B
CMake
19 lines
316 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
DebugInfoPDB
|
|
)
|
|
|
|
add_llvm_tool(llvm-pdbdump
|
|
llvm-pdbdump.cpp
|
|
BuiltinDumper.cpp
|
|
ClassDefinitionDumper.cpp
|
|
CompilandDumper.cpp
|
|
EnumDumper.cpp
|
|
ExternalSymbolDumper.cpp
|
|
FunctionDumper.cpp
|
|
LinePrinter.cpp
|
|
TypeDumper.cpp
|
|
TypedefDumper.cpp
|
|
VariableDumper.cpp
|
|
)
|