This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap_debug in repository toolchain/ci/binutils-gdb.
from b87062aade Automatic date update in version.in adds bd0736124c x86: Properly check invalid relocation against protected symbol adds 76e4fa70e7 ld: Pass -nostdlib to compiler with -r adds 3c539d41b4 [AArch64] Fix testcase compilation failure adds d0ff5ca959 [AArch64] Support AArch64 MTE memory tag dumps in core files adds 68cffbbd44 [AArch64] MTE corefile support adds e9061058b4 Reformat gdbarch-components.py to fix deviations adds d19a265487 x86: Make protected symbols local for -shared adds f638657759 x86: Disallow invalid relocations against protected symbols new 73d9afb778 Automatic date update in version.in
The 1 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/elf32-i386.c | 4 +- bfd/elf64-x86-64.c | 11 +- bfd/elfnn-aarch64.c | 89 ++++++++++++++ bfd/elfxx-x86.c | 23 +++- bfd/elfxx-x86.h | 3 +- bfd/version.h | 2 +- binutils/readelf.c | 1 + gdb/Makefile.in | 1 + gdb/NEWS | 10 ++ gdb/aarch64-linux-tdep.c | 171 +++++++++++++++++++++++++++ gdb/arch/aarch64-mte-linux.c | 56 +++++++++ gdb/arch/aarch64-mte-linux.h | 10 ++ gdb/corelow.c | 62 ++++++++++ gdb/defs.h | 3 +- gdb/doc/gdb.texinfo | 19 +++ gdb/gcore.c | 83 ++++++++++++- gdb/gdbarch-components.py | 40 +++++++ gdb/gdbarch-gen.h | 26 +++++ gdb/gdbarch.c | 96 +++++++++++++++ gdb/linux-tdep.c | 39 ++++++- gdb/memtag.c | 68 +++++++++++ gdb/memtag.h | 50 ++++++++ gdb/testsuite/gdb.arch/aarch64-mte-core.c | 152 ++++++++++++++++++++++++ gdb/testsuite/gdb.arch/aarch64-mte-core.exp | 175 ++++++++++++++++++++++++++++ gdb/testsuite/gdb.arch/aarch64-mte.c | 15 ++- include/elf/aarch64.h | 3 + ld/testsuite/ld-elf/linux-x86.exp | 16 +++ ld/testsuite/ld-elf/pr29377a.c | 5 + ld/testsuite/ld-elf/pr29377b.c | 10 ++ ld/testsuite/ld-i386/i386.exp | 2 +- ld/testsuite/ld-i386/pr17709.err | 2 + ld/testsuite/ld-i386/pr17709.rd | 4 - ld/testsuite/ld-i386/protected1.d | 4 +- ld/testsuite/ld-i386/protected3.d | 2 +- ld/testsuite/ld-i386/protected6a.d | 4 +- ld/testsuite/ld-x86-64/pr17709.err | 2 + ld/testsuite/ld-x86-64/pr17709.rd | 4 - ld/testsuite/ld-x86-64/pr24151a-x32.d | 4 +- ld/testsuite/ld-x86-64/pr24151a.d | 4 +- ld/testsuite/ld-x86-64/pr28875-func.err | 2 +- ld/testsuite/ld-x86-64/protected1.d | 4 +- ld/testsuite/ld-x86-64/protected3.d | 2 +- ld/testsuite/ld-x86-64/protected6a.d | 4 +- ld/testsuite/ld-x86-64/protected7a.d | 4 +- ld/testsuite/ld-x86-64/x86-64.exp | 45 +++---- 45 files changed, 1261 insertions(+), 75 deletions(-) create mode 100644 gdb/memtag.c create mode 100644 gdb/memtag.h create mode 100644 gdb/testsuite/gdb.arch/aarch64-mte-core.c create mode 100644 gdb/testsuite/gdb.arch/aarch64-mte-core.exp create mode 100644 ld/testsuite/ld-elf/pr29377a.c create mode 100644 ld/testsuite/ld-elf/pr29377b.c create mode 100644 ld/testsuite/ld-i386/pr17709.err delete mode 100644 ld/testsuite/ld-i386/pr17709.rd create mode 100644 ld/testsuite/ld-x86-64/pr17709.err delete mode 100644 ld/testsuite/ld-x86-64/pr17709.rd