mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
20fb81927b
In this diff the elf-specific code is moved into the subfolder ELF (and factored out from llvm-objcopy.cpp). Test plan: make check-all Differential revision: https://reviews.llvm.org/D53790 llvm-svn: 345544
33 lines
699 B
CMake
33 lines
699 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Object
|
|
Option
|
|
Support
|
|
MC
|
|
)
|
|
|
|
set(LLVM_TARGET_DEFINITIONS ObjcopyOpts.td)
|
|
tablegen(LLVM ObjcopyOpts.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(ObjcopyOptsTableGen)
|
|
|
|
set(LLVM_TARGET_DEFINITIONS StripOpts.td)
|
|
tablegen(LLVM StripOpts.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(StripOptsTableGen)
|
|
|
|
add_llvm_tool(llvm-objcopy
|
|
Buffer.cpp
|
|
CopyConfig.cpp
|
|
llvm-objcopy.cpp
|
|
ELF/ELFObjcopy.cpp
|
|
ELF/Object.cpp
|
|
DEPENDS
|
|
ObjcopyOptsTableGen
|
|
StripOptsTableGen
|
|
)
|
|
|
|
add_llvm_tool_symlink(llvm-strip llvm-objcopy)
|
|
|
|
if(LLVM_INSTALL_BINUTILS_SYMLINKS)
|
|
add_llvm_tool_symlink(objcopy llvm-objcopy)
|
|
add_llvm_tool_symlink(strip llvm-objcopy)
|
|
endif()
|