This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-arm in repository toolchain/ci/gdb.
from 584294c406 strings: Replace references to -u option with references to -U. adds b9db26b4c4 [PR gdb/27026] CTRL-C is ignored when debug info is downloaded adds 1c0e43634c Allow DW_ATE_UTF for Rust characters adds 9832d223d6 Automatic date update in version.in adds 13678b206f opcodes: enable silent build rules adds 75ea503ef0 bfd: enable silent build rules adds d8bbdb9dd5 binutils: enable silent build rules adds 45c06bb712 binutils: merge doc subdir up a level adds c7a92c872b gprof: enable silent build rules adds c7d1b270c2 libctf: enable silent build rules adds 48b5f33ab1 ld: enable silent build rules adds ae8e528122 zlib: enable silent build rules adds ee083a9e7c RISC-V: Dump vset[i]vli immediate as numbers once vsew or vl [...] new abfdb09f01 RISC-V: The vtype immediate with more than the defined 8 bit [...] new 0e3b7c25ee gdb/python: introduce gdb.TargetConnection object type new e5b176f25f gdb: make packet_command function available outside remote.c new 24b2de7b77 gdb/python: add gdb.RemoteTargetConnection.send_packet new 1527fe5f58 gdb: fix disassembler regressions for 32-bit arm new ae9aa73767 gdb/testsuite: check the python module is available before using it new 44b357eb9a ld: pru: Add pru_irq_map output section new 9745b5a753 Use dwarf_vma type for offsets, ranges and section sizes in [...]
The 8 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/Makefile.am | 88 +- bfd/Makefile.in | 88 +- bfd/configure | 43 +- bfd/configure.ac | 1 + bfd/version.h | 2 +- binutils/ChangeLog | 14 + binutils/Makefile.am | 108 +- binutils/Makefile.in | 694 +++++++++++-- binutils/configure | 46 +- binutils/configure.ac | 3 +- binutils/doc/Makefile.am | 186 ---- binutils/doc/Makefile.in | 1045 -------------------- binutils/doc/local.mk | 184 ++++ binutils/dwarf.c | 81 +- gas/testsuite/gas/riscv/vector-insns.d | 52 +- gas/testsuite/gas/riscv/vector-insns.s | 57 +- gdb/Makefile.in | 1 + gdb/NEWS | 29 + gdb/c-lang.c | 2 +- gdb/c-valprint.c | 2 +- gdb/debuginfod-support.c | 15 + gdb/doc/gdb.texinfo | 4 + gdb/doc/python.texi | 157 ++- gdb/dwarf2/read.c | 15 +- gdb/observable.c | 1 + gdb/observable.h | 3 + gdb/python/py-all-events.def | 1 + gdb/python/py-connection.c | 570 +++++++++++ gdb/python/py-event-types.def | 5 + gdb/python/py-inferior.c | 16 + gdb/python/python-internal.h | 6 + gdb/python/python.c | 5 + gdb/remote.c | 117 ++- gdb/remote.h | 43 + gdb/target-connection.c | 4 + gdb/testsuite/gdb.base/all-architectures.exp.tcl | 30 +- gdb/testsuite/gdb.dwarf2/utf-rust.exp | 69 ++ .../gdb.multi/multi-target-info-inferiors.exp | 38 + .../gdb.multi/multi-target-info-inferiors.py | 64 ++ gdb/testsuite/gdb.python/py-connection.c | 22 + gdb/testsuite/gdb.python/py-connection.exp | 75 ++ gdb/testsuite/gdb.python/py-inferior-leak.exp | 6 + gdb/testsuite/gdb.python/py-inferior.exp | 20 +- gdb/testsuite/gdb.python/py-send-packet.c | 31 + gdb/testsuite/gdb.python/py-send-packet.exp | 99 ++ gdb/testsuite/gdb.python/py-send-packet.py | 176 ++++ gdb/testsuite/lib/gdb-python.exp | 25 + gprof/Makefile.am | 16 +- gprof/Makefile.in | 16 +- gprof/configure | 43 +- gprof/configure.ac | 1 + include/opcode/riscv.h | 2 - ld/ChangeLog | 7 + ld/Makefile.am | 62 +- ld/Makefile.in | 62 +- ld/configure | 43 +- ld/configure.ac | 1 + ld/scripttempl/pru.sc | 6 + ld/testsuite/ld-pru/pru_irq_map-1.d | 17 + ld/testsuite/ld-pru/pru_irq_map-2.d | 10 + ld/testsuite/ld-pru/pru_irq_map.s | 20 + libctf/Makefile.am | 2 +- libctf/configure | 43 +- libctf/configure.ac | 1 + opcodes/Makefile.am | 52 +- opcodes/Makefile.in | 52 +- opcodes/configure | 43 +- opcodes/configure.ac | 1 + opcodes/riscv-dis.c | 6 +- opcodes/riscv-opc.c | 4 +- zlib/configure | 43 +- zlib/configure.ac | 1 + 72 files changed, 3114 insertions(+), 1783 deletions(-) delete mode 100644 binutils/doc/Makefile.am delete mode 100644 binutils/doc/Makefile.in create mode 100644 binutils/doc/local.mk create mode 100644 gdb/python/py-connection.c create mode 100644 gdb/testsuite/gdb.dwarf2/utf-rust.exp create mode 100644 gdb/testsuite/gdb.multi/multi-target-info-inferiors.py create mode 100644 gdb/testsuite/gdb.python/py-connection.c create mode 100644 gdb/testsuite/gdb.python/py-connection.exp create mode 100644 gdb/testsuite/gdb.python/py-send-packet.c create mode 100644 gdb/testsuite/gdb.python/py-send-packet.exp create mode 100644 gdb/testsuite/gdb.python/py-send-packet.py create mode 100644 ld/testsuite/ld-pru/pru_irq_map-1.d create mode 100644 ld/testsuite/ld-pru/pru_irq_map-2.d create mode 100644 ld/testsuite/ld-pru/pru_irq_map.s