This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_gcc/master-arm in repository toolchain/ci/gdb.
from fbcda57701 Show enabled locations with disabled breakpoint parent as "y-" adds f85c0e1e20 Re: Add bionutils support for DWARF v5's DW_OP_addrx adds d1a24139ad Automatic date update in version.in adds 9e2bb0cb5e ld: add --package-metadata adds f67741e172 bfd: Add Support for DW_FORM_strx* and DW_FORM_addrx* adds bfcd7c2160 gdb/testsuite: prefer gdb_test in gdb.dwarf2/calling-convention adds 284b6bb5c6 gdb/linux-nat: xfer_memory_partial return E_IO on error adds 20d814202a arm: avoid use of GNU builtin function in s_arm_unwind_save_mixed adds f420c9c84e bit-rot in target before_parse function adds 20a26f4e01 Finalize each cooked index separately adds 834eaf9201 Fix crash in new DWARF indexer new fcf8e81420 gdb: Require psymtab before calling quick_functions in objfile new 98aa8321ee gdb: Change psymbol_functions::require_partial_symbols to pa [...] new b2fdd31b03 aarch64-fbsd-nat: Move definition of debug_regs_probed under [...]
The 3 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/dwarf2.c | 282 ++++++++++++++++++++- bfd/elf-bfd.h | 8 + bfd/elf.c | 8 +- bfd/version.h | 2 +- binutils/testsuite/binutils-all/dw5-op.S | 134 ++++++++++ binutils/testsuite/binutils-all/dw5-op.W | 35 +++ gas/config/tc-arm.c | 57 ++--- gdb/aarch64-fbsd-nat.c | 3 +- gdb/dwarf2/cooked-index.c | 267 +++++++++---------- gdb/dwarf2/cooked-index.h | 88 ++++--- gdb/dwarf2/read.c | 72 +++--- gdb/linux-nat.c | 2 +- gdb/objfiles.h | 13 + gdb/psympriv.h | 5 +- gdb/psymtab.c | 37 ++- gdb/symfile-debug.c | 30 +-- .../fork-no-detach-follow-child-dlopen-shlib.c | 23 ++ .../gdb.base/fork-no-detach-follow-child-dlopen.c | 40 +++ .../fork-no-detach-follow-child-dlopen.exp | 57 +++++ gdb/testsuite/gdb.dwarf2/calling-convention.exp | 14 +- gdb/testsuite/gdb.dwarf2/cu-no-addrs.exp | 62 +++++ gdbsupport/range-chain.h | 121 +++++++++ ld/Makefile.am | 6 +- ld/Makefile.in | 12 +- ld/NEWS | 6 + ld/aclocal.m4 | 1 + ld/config.in | 3 + ld/configure | 270 +++++++++++++++++++- ld/configure.ac | 26 ++ ld/emultempl/aarch64elf.em | 4 + ld/emultempl/armelf.em | 4 + ld/emultempl/elf.em | 9 + ld/emultempl/scoreelf.em | 4 + ld/ld.texi | 12 + ld/ldelf.c | 135 +++++++++- ld/ldelf.h | 2 + ld/lexsup.c | 2 + ld/testsuite/ld-bootstrap/bootstrap.exp | 6 + ld/testsuite/ld-elf/elf.exp | 2 - ld/testsuite/ld-elf/package-note.exp | 45 ++++ ld/testsuite/ld-elf/package-note.rd | 6 + 41 files changed, 1598 insertions(+), 317 deletions(-) create mode 100644 binutils/testsuite/binutils-all/dw5-op.S create mode 100644 binutils/testsuite/binutils-all/dw5-op.W create mode 100644 gdb/testsuite/gdb.base/fork-no-detach-follow-child-dlopen-shlib.c create mode 100644 gdb/testsuite/gdb.base/fork-no-detach-follow-child-dlopen.c create mode 100644 gdb/testsuite/gdb.base/fork-no-detach-follow-child-dlopen.exp create mode 100644 gdb/testsuite/gdb.dwarf2/cu-no-addrs.exp create mode 100644 gdbsupport/range-chain.h create mode 100644 ld/testsuite/ld-elf/package-note.exp create mode 100644 ld/testsuite/ld-elf/package-note.rd