mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
459c949777
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200450 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
249 B
CMake
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
|
|
)
|