This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from f4f95df31b0 Updated Serbian (for binutils/) and Russian (for gprof/) tr [...] new 978602e83f0 bfd: add AMDGCN architecture new e3161106097 opcodes: handle bfd_amdgcn_arch in configure script new 37870be8740 binutils/readelf: handle AMDGPU OS ABIs new c077c5802c3 binutils/readelf: decode AMDGPU-specific e_flags new 28cdbb183bf binutils/readelf: handle NT_AMDGPU_METADATA note name new 2952f10cd79 binutils/readelf: build against msgpack, dump NT_AMDGPU_MET [...] new 0c857ef4dfc binutils/readelf: handle AMDGPU relocation types
The 7 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: bfd/ChangeLog | 21 +++ bfd/Makefile.am | 4 + bfd/Makefile.in | 6 + bfd/archures.c | 15 ++ bfd/bfd-in2.h | 13 ++ bfd/config.bfd | 5 + bfd/configure | 1 + bfd/configure.ac | 1 + bfd/cpu-amdgcn.c | 59 ++++++++ bfd/elf-bfd.h | 1 + bfd/elf64-amdgcn.c | 80 +++++++++++ bfd/targets.c | 5 + binutils/ChangeLog | 37 +++++ binutils/Makefile.am | 14 +- binutils/Makefile.in | 11 +- binutils/config.in | 3 + binutils/configure | 137 +++++++++++++++++- binutils/configure.ac | 17 +++ binutils/readelf.c | 379 ++++++++++++++++++++++++++++++++++++++++++++++++-- include/ChangeLog | 23 +++ include/elf/amdgpu.h | 115 +++++++++++++++ include/elf/common.h | 3 + opcodes/ChangeLog | 5 + opcodes/configure | 1 + opcodes/configure.ac | 1 + 25 files changed, 938 insertions(+), 19 deletions(-) create mode 100644 bfd/cpu-amdgcn.c create mode 100644 bfd/elf64-amdgcn.c create mode 100644 include/elf/amdgpu.h