mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
7ae0bc028f
Adding the initial files for adding MachO support to yaml2obj. Passing a MachO file will result in an error. I will be implementing obj2yaml and yaml2obj for MachO in parallel so that one can be used to test the other. llvm-svn: 269244
14 lines
157 B
CMake
14 lines
157 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
MC
|
|
Object
|
|
ObjectYAML
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(yaml2obj
|
|
yaml2obj.cpp
|
|
yaml2coff.cpp
|
|
yaml2elf.cpp
|
|
yaml2macho.cpp
|
|
)
|