[llvm] r309043 - Reland "[LLVM][llvm-objcopy] Added basic plumbing to get things started"
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 25 15:38:08 PDT 2017
Author: phosek
Date: Tue Jul 25 15:38:08 2017
New Revision: 309043
URL: http://llvm.org/viewvc/llvm-project?rev=309043&view=rev
Log:
Reland "[LLVM][llvm-objcopy] Added basic plumbing to get things started"
As discussed on llvm-dev I've implemented the first basic steps towards
llvm-objcopy/llvm-objtool (name pending).
This change adds the ability to copy (without modification) 64-bit
little endian ELF executables that have SHT_PROGBITS, SHT_NOBITS,
SHT_NULL and SHT_STRTAB sections.
Patch by Jake Ehrlich
Differential Revision: https://reviews.llvm.org/D33964
Modified:
llvm/trunk/test/CMakeLists.txt
llvm/trunk/tools/LLVMBuild.txt
Modified: llvm/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CMakeLists.txt?rev=309043&r1=309042&r2=309043&view=diff
==============================================================================
--- llvm/trunk/test/CMakeLists.txt (original)
+++ llvm/trunk/test/CMakeLists.txt Tue Jul 25 15:38:08 2017
@@ -61,6 +61,7 @@ set(LLVM_TEST_DEPENDS
llvm-modextract
llvm-mt
llvm-nm
+ llvm-objcopy
llvm-objdump
llvm-opt-report
llvm-pdbutil
Modified: llvm/trunk/tools/LLVMBuild.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/LLVMBuild.txt?rev=309043&r1=309042&r2=309043&view=diff
==============================================================================
--- llvm/trunk/tools/LLVMBuild.txt (original)
+++ llvm/trunk/tools/LLVMBuild.txt Tue Jul 25 15:38:08 2017
@@ -40,6 +40,7 @@ subdirectories =
llvm-modextract
llvm-mt
llvm-nm
+ llvm-objcopy
llvm-objdump
llvm-pdbutil
llvm-profdata
More information about the llvm-commits
mailing list