This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-check_binutils in repository toolchain/ci/binutils-gdb.
from 25e821a6c2 Automatic date update in version.in adds 1bace02a96 Initial TUI mouse support adds a53755664f Forward mouse click to python TUI window adds 4351271e9c gdb: add some additional debug output in remote.c adds 386de171cb Add PROP_VARIABLE_NAME adds 30569fbb57 Automatic date update in version.in adds ae61ef2c56 arc: Add 'set disassembler-options' support adds ad4bd975fc Fix symbol constants tests for Python 3 adds 5bea0c3276 sim: common: start dedicated local.mk adds b316465fab Use ACX_NONCANONICAL_TARGET in gdb/configure adds 19d6d783e1 Fix gdb/data-directory Makefile-regeneration rule adds 8ff8c543b4 Really fix data-directory/Makefile rebuilding adds 4a97754465 Fix gdb crash due to SIGPIPE when the compile command fails new 9482e6e450 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/version.h | 2 +- gdb/ChangeLog | 63 +++++++++++++ gdb/NEWS | 3 + gdb/arc-tdep.c | 6 +- gdb/compile/compile.c | 31 +++++++ gdb/configure | 19 ++++ gdb/configure.ac | 2 + gdb/data-directory/Makefile.in | 2 +- gdb/doc/ChangeLog | 9 ++ gdb/doc/gdb.texinfo | 4 +- gdb/doc/python.texi | 7 ++ gdb/dwarf2/loc.c | 37 +++++++- gdb/dwarf2/read.c | 34 ++++++- gdb/dwarf2/read.h | 7 +- gdb/gdbtypes.h | 22 +++++ gdb/python/py-tui.c | 17 ++++ gdb/remote.c | 8 ++ gdb/ser-mingw.c | 5 + gdb/testsuite/ChangeLog | 18 ++++ gdb/testsuite/gdb.ada/array_of_symbolic_length.exp | 59 ++++++++++++ .../gdb.ada/array_of_symbolic_length/foo.adb | 25 +++++ .../gdb.ada/array_of_symbolic_length/gl.adb | 23 +++++ .../gdb.ada/array_of_symbolic_length/gl.ads | 18 ++++ .../gdb.ada/array_of_symbolic_length/pck.adb | 23 +++++ .../gdb.ada/array_of_symbolic_length/pck.ads | 43 +++++++++ .../gdb.arch/arc-disassembler-options.exp | 45 +++++++++ gdb/testsuite/gdb.arch/arc-disassembler-options.s | 21 +++++ gdb/testsuite/gdb.python/py-symbol.exp | 44 ++++----- gdb/tui/tui-data.h | 7 ++ gdb/tui/tui-io.c | 37 ++++++++ gdb/tui/tui.c | 4 + sim/ChangeLog | 7 ++ sim/Makefile.am | 7 ++ sim/Makefile.in | 102 ++++++++++++++++----- sim/common/ChangeLog | 8 ++ sim/common/Make-common.in | 13 +-- sim/common/local.mk | 37 ++++++++ sim/igen/ChangeLog | 5 + sim/igen/local.mk | 2 +- 39 files changed, 762 insertions(+), 64 deletions(-) create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length.exp create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length/foo.adb create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length/gl.adb create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length/gl.ads create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length/pck.adb create mode 100644 gdb/testsuite/gdb.ada/array_of_symbolic_length/pck.ads create mode 100644 gdb/testsuite/gdb.arch/arc-disassembler-options.exp create mode 100644 gdb/testsuite/gdb.arch/arc-disassembler-options.s create mode 100644 sim/common/local.mk