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-stable-allnoconfig in repository toolchain/binutils-gdb.
from 656efb5e26 Fix PR gdb/23835: Don't redefine _FORTIFY_SOURCE if it's alr [...] adds 38642de318 Automatic date update in version.in adds cdcda965ea Reading signal handler frame in AIX adds 33ea299c25 Fix ld action in run_dump_test adds e8d8cce69b Import mkdtemp gnulib module, fix mingw build adds e1c3a37375 arm-pikeos: software single step adds 1cc62f2e44 rs6000-tdep.c:skip_prologue avoid negative left shift adds 87f7ab7b84 gdb.texinfo: Fix the output of the "info tasks 2" example adds 8b578f9c76 remove trailing spaces in print-utils.c ("int_string" function) adds e2b7af7242 (Ada) fix "error in expression" when using watch -location command
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- binutils/ChangeLog | 8 ++ binutils/testsuite/config/default.exp | 8 ++ binutils/testsuite/lib/binutils-common.exp | 19 ++++ gas/ChangeLog | 5 + gas/testsuite/config/default.exp | 8 ++ gdb/ChangeLog | 62 +++++++++++ gdb/Makefile.in | 1 + gdb/ada-lang.c | 13 ++- gdb/arm-pikeos-tdep.c | 92 ++++++++++++++++ gdb/common/pathstuff.c | 25 +++++ gdb/common/pathstuff.h | 10 ++ gdb/common/print-utils.c | 6 +- gdb/compile/compile.c | 4 - gdb/config.in | 3 - gdb/configure | 2 +- gdb/configure.ac | 2 +- gdb/configure.tgt | 1 + gdb/defs.h | 1 + gdb/doc/ChangeLog | 5 + gdb/doc/gdb.texinfo | 3 +- gdb/gnulib/aclocal-m4-deps.mk | 1 + gdb/gnulib/aclocal.m4 | 1 + gdb/gnulib/config.in | 6 ++ gdb/gnulib/configure | 47 +++++++++ gdb/gnulib/import/Makefile.am | 11 +- gdb/gnulib/import/Makefile.in | 20 ++-- gdb/gnulib/import/m4/gnulib-cache.m4 | 3 +- gdb/gnulib/import/m4/gnulib-comp.m4 | 9 ++ gdb/gnulib/import/m4/mkdtemp.m4 | 20 ++++ gdb/gnulib/import/mkdtemp.c | 39 +++++++ gdb/gnulib/update-gnulib.sh | 1 + gdb/osabi.c | 1 + gdb/rs6000-aix-tdep.c | 116 ++++++++++++++++++++- gdb/rs6000-tdep.c | 11 +- gdb/testsuite/ChangeLog | 9 ++ gdb/testsuite/gdb.ada/watch_minus_l.exp | 42 ++++++++ .../gdb.ada/watch_minus_l/foo_ra10_006.adb | 22 ++++ .../{mi_string_access => watch_minus_l}/pck.adb | 0 gdb/testsuite/gdb.ada/watch_minus_l/pck.ads | 22 ++++ gdb/testsuite/gdb.arch/aix-sighandle.c | 35 +++++++ gdb/testsuite/gdb.arch/aix-sighandle.exp | 43 ++++++++ gdb/unittests/mkdir-recursive-selftests.c | 15 +-- ld/ChangeLog | 5 + ld/testsuite/lib/ld-lib.exp | 17 --- 45 files changed, 721 insertions(+), 55 deletions(-) create mode 100644 gdb/arm-pikeos-tdep.c create mode 100644 gdb/gnulib/import/m4/mkdtemp.m4 create mode 100644 gdb/gnulib/import/mkdtemp.c create mode 100644 gdb/testsuite/gdb.ada/watch_minus_l.exp create mode 100644 gdb/testsuite/gdb.ada/watch_minus_l/foo_ra10_006.adb copy gdb/testsuite/gdb.ada/{mi_string_access => watch_minus_l}/pck.adb (100%) create mode 100644 gdb/testsuite/gdb.ada/watch_minus_l/pck.ads create mode 100644 gdb/testsuite/gdb.arch/aix-sighandle.c create mode 100644 gdb/testsuite/gdb.arch/aix-sighandle.exp