mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 17:31:50 +00:00
e05aeff019
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269244 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
)
|