mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
28f40b61a1
Summary: This patch adds some new APIs to enable using the YAML DWARF representation in unit tests. The most basic new API is DWARFYAML::EmitDebugSections which converts a YAML string into a series of owned MemoryBuffer objects stored in a StringMap. The string map can then be used to construct a DWARFContext for parsing in place of an ObjectFile. Reviewers: dblaikie, clayborg Subscribers: mgorny, fhahn, jgosnell, aprantl, llvm-commits Differential Revision: https://reviews.llvm.org/D28828 llvm-svn: 292634
20 lines
285 B
CMake
20 lines
285 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
AsmPrinter
|
|
DebugInfoDWARF
|
|
MC
|
|
Object
|
|
ObjectYAML
|
|
Support
|
|
)
|
|
|
|
set(DebugInfoSources
|
|
DwarfGenerator.cpp
|
|
DWARFDebugInfoTest.cpp
|
|
DWARFFormValueTest.cpp
|
|
)
|
|
|
|
add_llvm_unittest(DebugInfoDWARFTests
|
|
${DebugInfoSources}
|
|
)
|