This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-allyesconfig in repository toolchain/ci/binutils-gdb.
from 2f796de6da Fix issue with warning messages about corrupt debuginfod notes. adds 42ba50eccb gdbserver: Remove a stale TAGS recipe for config files adds 42cd72aa02 gdbserver: Make `make TAGS' actually work adds caa31cfad6 Fix an illegal call to free() when copying a PE format file. adds 43198d2089 Support the NetBSD version of pthread_setname_np adds 73685c7ede Define _KERNTYPES in arm-nbsd-nat.c adds 3050c6f4bc Make the class name in the definition match the declaration adds bdaed379e9 Add install-strip target to gdbserver adds 53af73bf5e Fix re-runs of a second inferior (PR gdb/25410) adds b5f998b2dd RISC-V: Minor cleanup for s extension support. adds 94a72be708 gdb: Include end of sequence markers in the line table adds 3d92a3e313 gdb: Don't reorder line table entries too much when sorting. adds 7ffa82e122 gdb: Better frame tracking for inline frames adds e53c0f75bd Automatic date update in version.in new a2fedca99c Implement 'set/show exec-file-mismatch'. new b1468492c6 Test 'set exec-file-mismatch ask|warn|off'. new e47e48f6a7 Document 'set|show exec-file-mismatch (ask|warn|off)'
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/ChangeLog | 13 + bfd/coffgen.c | 6 +- bfd/elfxx-riscv.c | 8 +- bfd/version.h | 2 +- gdb/ChangeLog | 72 ++++ gdb/NEWS | 13 + gdb/arm-nbsd-nat.c | 6 +- gdb/buildsym.c | 40 +-- gdb/doc/ChangeLog | 6 + gdb/doc/gdb.texinfo | 30 ++ gdb/dwarf2read.c | 8 +- gdb/exec.c | 150 +++++++- gdb/frame.c | 9 +- gdb/gdbcore.h | 5 + gdb/gdbserver/ChangeLog | 26 ++ gdb/gdbserver/Makefile.in | 50 +-- gdb/gdbserver/aclocal.m4 | 101 ++++++ gdb/gdbserver/configure | 119 ++++++- gdb/gdbserver/configure.ac | 3 +- gdb/gdbserver/configure.srv | 49 +-- gdb/infcmd.c | 3 + gdb/infrun.c | 16 +- gdb/inline-frame.c | 30 +- gdb/remote.c | 3 + gdb/symmisc.c | 8 +- gdb/symtab.c | 7 +- gdb/testsuite/ChangeLog | 26 ++ gdb/testsuite/gdb.base/attach.c | 1 + gdb/testsuite/gdb.base/attach.exp | 84 ++++- gdb/testsuite/gdb.base/attach2.c | 1 + gdb/testsuite/gdb.base/maint.exp | 20 +- gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.c | 158 +++++++++ .../gdb.dwarf2/dw2-inline-many-frames.exp | 379 +++++++++++++++++++++ gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.c | 45 +++ gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.exp | 146 ++++++++ gdb/testsuite/gdb.dwarf2/dw2-ranges-base.exp | 22 ++ gdb/testsuite/gdb.multi/multi-re-run-1.c | 61 ++++ gdb/testsuite/gdb.multi/multi-re-run-2.c | 61 ++++ gdb/testsuite/gdb.multi/multi-re-run.exp | 115 +++++++ gdb/thread.c | 5 +- gdbsupport/ChangeLog | 5 + gdbsupport/thread-pool.c | 12 +- 42 files changed, 1790 insertions(+), 134 deletions(-) create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-many-frames.exp create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-inline-stepping.exp create mode 100644 gdb/testsuite/gdb.multi/multi-re-run-1.c create mode 100644 gdb/testsuite/gdb.multi/multi-re-run-2.c create mode 100644 gdb/testsuite/gdb.multi/multi-re-run.exp