1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/tools/llvm-readobj/CMakeLists.txt
Saleem Abdulrasool b264887853 tools: add support for decoding ARM attributes
Enhance the ARM specific parsing support in llvm-readobj to support attributes.
This allows for simpler tests to validate encoding of the build attributes as
specified in the ARM ELF specification.

llvm-svn: 200450
2014-01-30 04:46:33 +00:00

17 lines
249 B
CMake

set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
Object
Support
)
add_llvm_tool(llvm-readobj
llvm-readobj.cpp
ObjDumper.cpp
COFFDumper.cpp
ELFDumper.cpp
MachODumper.cpp
Error.cpp
StreamWriter.cpp
ARMAttributeParser.cpp
)