mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-12 15:51:40 +00:00
![Chris Bieneman](/assets/img/avatar_default.png)
This makes the dwarf2yaml code separated and reusable allowing ELF and COFF to share implementations with MachO. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288986 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
198 B
CMake
16 lines
198 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
DebugInfoDWARF
|
|
Object
|
|
ObjectYAML
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(obj2yaml
|
|
obj2yaml.cpp
|
|
coff2yaml.cpp
|
|
dwarf2yaml.cpp
|
|
elf2yaml.cpp
|
|
macho2yaml.cpp
|
|
Error.cpp
|
|
)
|