mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
141d676063
Currently, only emitting the ELF header is supported (no sections or segments). The ELFYAML code organization is broadly similar to the COFFYAML code. llvm-svn: 183711
10 lines
155 B
CMake
10 lines
155 B
CMake
set(LLVM_LINK_COMPONENTS object)
|
|
|
|
add_llvm_utility(yaml2obj
|
|
yaml2obj.cpp
|
|
yaml2coff.cpp
|
|
yaml2elf.cpp
|
|
)
|
|
|
|
target_link_libraries(yaml2obj LLVMSupport)
|