mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
80178ca710
Adding the initial files for adding MachO support to obj2yaml. Passing a MachO file will result in a new not_implemented error. I will be implementing obj2yaml and yaml2obj for MachO in parallel so that one can be used to test the other. llvm-svn: 269243
14 lines
164 B
CMake
14 lines
164 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Object
|
|
ObjectYAML
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(obj2yaml
|
|
obj2yaml.cpp
|
|
coff2yaml.cpp
|
|
elf2yaml.cpp
|
|
macho2yaml.cpp
|
|
Error.cpp
|
|
)
|