This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 35647a1478c [CMake] Fix broken builds from r309029 new 9ed22432b47 [CMAKE] Speedup developer builds when passing LLVM_APPEND_V [...] new 960873b10dd Reland "[LLVM][llvm-objcopy] Added basic plumbing to get th [...]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Support/CMakeLists.txt | 32 ++- test/CMakeLists.txt | 1 + test/tools/llvm-objcopy/basic-copy.test | 47 ++++ test/tools/llvm-objcopy/empty-section.test | 55 +++++ test/tools/llvm-objcopy/program-headers.test | 68 ++++++ tools/LLVMBuild.txt | 1 + tools/llvm-objcopy/CMakeLists.txt | 9 + tools/{ => llvm-objcopy}/LLVMBuild.txt | 45 +--- tools/llvm-objcopy/Object.cpp | 341 +++++++++++++++++++++++++++ tools/llvm-objcopy/Object.h | 150 ++++++++++++ tools/llvm-objcopy/llvm-objcopy.cpp | 99 ++++++++ tools/llvm-objcopy/llvm-objcopy.h | 32 +++ 12 files changed, 831 insertions(+), 49 deletions(-) create mode 100644 test/tools/llvm-objcopy/basic-copy.test create mode 100644 test/tools/llvm-objcopy/empty-section.test create mode 100644 test/tools/llvm-objcopy/program-headers.test create mode 100644 tools/llvm-objcopy/CMakeLists.txt copy tools/{ => llvm-objcopy}/LLVMBuild.txt (52%) create mode 100644 tools/llvm-objcopy/Object.cpp create mode 100644 tools/llvm-objcopy/Object.h create mode 100644 tools/llvm-objcopy/llvm-objcopy.cpp create mode 100644 tools/llvm-objcopy/llvm-objcopy.h