You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
511 B
33 lines
511 B
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsDescs
|
|
AllTargetsDisassemblers
|
|
AllTargetsInfos
|
|
BinaryFormat
|
|
CodeGen
|
|
DebugInfoDWARF
|
|
DebugInfoPDB
|
|
Demangle
|
|
MC
|
|
MCDisassembler
|
|
Object
|
|
Support
|
|
Symbolize
|
|
)
|
|
|
|
add_llvm_tool(llvm-objdump
|
|
llvm-objdump.cpp
|
|
COFFDump.cpp
|
|
ELFDump.cpp
|
|
MachODump.cpp
|
|
WasmDump.cpp
|
|
XCOFFDump.cpp
|
|
)
|
|
|
|
if(HAVE_LIBXAR)
|
|
target_link_libraries(llvm-objdump PRIVATE ${XAR_LIB})
|
|
endif()
|
|
|
|
if(LLVM_INSTALL_BINUTILS_SYMLINKS)
|
|
add_llvm_tool_symlink(objdump llvm-objdump)
|
|
endif()
|