This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap
in repository toolchain/ci/binutils-gdb.
from 3a3e333f65 RISC-V: Maintain a string to hold the canonical order
adds 955b0ef98e gdb/testsuite/README: point to default value of INTERNAL_GDBFLAGS
adds 6a8fe63330 gdb: fix detection of compilation and linking flags for sour [...]
new ea3e7446dc gdbsupport: Add an event-pipe class.
new c150bdf0e0 gdb linux-nat: Convert linux_nat_event_pipe to the event_pip [...]
new cdc8e9b285 gdbserver linux-low: Convert linux_event_pipe to the event_p [...]
new 38ba82db78 Enable async mode on supported targets in target_resume.
new 34c9b2b49b Don't enable async mode at the end of target ::resume methods.
new 14b3360508 do_target_wait_1: Clear TARGET_WNOHANG if the target isn't async.
new 85e8c48c73 inf-ptrace: Return an IGNORE event if waitpid() fails.
new ca81b5334e inf-ptrace: Support async targets in inf_ptrace_target::wait.
new 9385df2a58 fbsd-nat: Implement async target support.
new 5efac66ca6 fbsd-nat: Include ptrace operation in error messages.
new 1188bfcfa9 fbsd-nat: Various cleanups to the ::resume entry debug message.
new d0bbe64c5a fbsd-nat: Return nullptr rather than failing ::thread_name.
new e05523bd24 Enable async mode in the target in attach_cmd.
new b146ba14d7 inf-ptrace: Add an event_pipe to be used for async mode in s [...]
new 1ead4b8ed2 NEWS: Note that the FreeBSD async target supports async mode.
The 15 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:
gdb/NEWS | 2 +
gdb/configure | 12 ++--
gdb/configure.ac | 12 ++--
gdb/fbsd-nat.c | 150 ++++++++++++++++++++++++++++++++++++------
gdb/fbsd-nat.h | 6 ++
gdb/inf-ptrace.c | 47 +++++++++++--
gdb/inf-ptrace.h | 30 +++++++++
gdb/infcmd.c | 4 ++
gdb/infrun.c | 5 +-
gdb/linux-nat.c | 164 ++++++++--------------------------------------
gdb/linux-nat.h | 4 --
gdb/record-full.c | 10 ---
gdb/remote.c | 14 ----
gdb/target.c | 3 +
gdb/testsuite/README | 12 ++--
gdb/testsuite/lib/gdb.exp | 4 ++
gdbserver/linux-low.cc | 43 ++++--------
gdbsupport/Makefile.am | 5 ++
gdbsupport/Makefile.in | 9 ++-
gdbsupport/configure | 15 +++++
gdbsupport/configure.ac | 3 +
gdbsupport/event-pipe.cc | 101 ++++++++++++++++++++++++++++
gdbsupport/event-pipe.h | 60 +++++++++++++++++
23 files changed, 466 insertions(+), 249 deletions(-)
create mode 100644 gdbsupport/event-pipe.cc
create mode 100644 gdbsupport/event-pipe.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap
in repository toolchain/ci/base-artifacts.
discards e827093d 0: update: binutils-gcc: 2
new 6d82fb2b 0: update: binutils-gcc: 2
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e827093d)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_gcc_bootstrap/master-aar [...]
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
01-reset_artifacts/console.log.xz | Bin 1652 -> 1536 bytes
02-prepare_abe/console.log.xz | Bin 2760 -> 2756 bytes
04-build_abe-binutils/console.log.xz | Bin 37820 -> 37508 bytes
05-build_abe-bootstrap/console.log.xz | Bin 262548 -> 263492 bytes
06-check_regression/console.log.xz | Bin 416 -> 416 bytes
07-update_baseline/console.log | 36 ----------------------------------
jenkins/manifest.sh | 12 ++++++------
7 files changed, 6 insertions(+), 42 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 6a8fe63330c gdb: fix detection of compilation and linking flags for sou [...]
new ea3e7446dca gdbsupport: Add an event-pipe class.
new c150bdf0e09 gdb linux-nat: Convert linux_nat_event_pipe to the event_pi [...]
new cdc8e9b2859 gdbserver linux-low: Convert linux_event_pipe to the event_ [...]
new 38ba82db783 Enable async mode on supported targets in target_resume.
new 34c9b2b49be Don't enable async mode at the end of target ::resume methods.
new 14b3360508b do_target_wait_1: Clear TARGET_WNOHANG if the target isn't async.
new 85e8c48c73a inf-ptrace: Return an IGNORE event if waitpid() fails.
new ca81b5334e0 inf-ptrace: Support async targets in inf_ptrace_target::wait.
new 9385df2a581 fbsd-nat: Implement async target support.
new 5efac66ca66 fbsd-nat: Include ptrace operation in error messages.
new 1188bfcfa98 fbsd-nat: Various cleanups to the ::resume entry debug message.
new d0bbe64c5a3 fbsd-nat: Return nullptr rather than failing ::thread_name.
new e05523bd241 Enable async mode in the target in attach_cmd.
new b146ba14d70 inf-ptrace: Add an event_pipe to be used for async mode in [...]
new 1ead4b8ed29 NEWS: Note that the FreeBSD async target supports async mode.
The 15 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:
gdb/NEWS | 2 +
gdb/fbsd-nat.c | 150 +++++++++++++++++++++++++++++++++++++------
gdb/fbsd-nat.h | 6 ++
gdb/inf-ptrace.c | 47 ++++++++++++--
gdb/inf-ptrace.h | 30 +++++++++
gdb/infcmd.c | 4 ++
gdb/infrun.c | 5 +-
gdb/linux-nat.c | 164 ++++++++---------------------------------------
gdb/linux-nat.h | 4 --
gdb/record-full.c | 10 ---
gdb/remote.c | 14 ----
gdb/target.c | 3 +
gdbserver/linux-low.cc | 43 ++++---------
gdbsupport/Makefile.am | 5 ++
gdbsupport/Makefile.in | 9 ++-
gdbsupport/configure | 15 +++++
gdbsupport/configure.ac | 3 +
gdbsupport/event-pipe.cc | 101 +++++++++++++++++++++++++++++
gdbsupport/event-pipe.h | 60 +++++++++++++++++
19 files changed, 445 insertions(+), 230 deletions(-)
create mode 100644 gdbsupport/event-pipe.cc
create mode 100644 gdbsupport/event-pipe.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/release-arm-bootstrap_debug
in repository toolchain/ci/binutils-gdb.
from 8afae2da1f Automatic date update in version.in
adds 6c15b0fd4a Automatic date update in version.in
adds 98cf8b20f2 Automatic date update in version.in
adds e4f3d6d4fd Automatic date update in version.in
No new revisions were added by this update.
Summary of changes:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/release-arm-bootstrap_debug
in repository toolchain/ci/base-artifacts.
discards 17f051a1 0: update: binutils-gcc: 2
new c22ab8c0 0: update: binutils-gcc: 2
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (17f051a1)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_gcc_bootstrap/release-ar [...]
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
01-reset_artifacts/console.log.xz | Bin 1548 -> 1556 bytes
02-prepare_abe/console.log.xz | Bin 2760 -> 2768 bytes
04-build_abe-binutils/console.log.xz | Bin 50532 -> 50808 bytes
05-build_abe-bootstrap_debug/console.log.xz | Bin 449264 -> 447860 bytes
06-check_regression/console.log.xz | Bin 416 -> 416 bytes
07-update_baseline/console.log | 16 ++++++++--------
jenkins/manifest.sh | 12 ++++++------
7 files changed, 14 insertions(+), 14 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-aarch64
in repository toolchain/ci/binutils-gdb.
from 3a3e333f65 RISC-V: Maintain a string to hold the canonical order
adds 955b0ef98e gdb/testsuite/README: point to default value of INTERNAL_GDBFLAGS
adds 6a8fe63330 gdb: fix detection of compilation and linking flags for sour [...]
No new revisions were added by this update.
Summary of changes:
gdb/configure | 12 ++++++------
gdb/configure.ac | 12 ++++++------
gdb/testsuite/README | 12 +++++-------
gdb/testsuite/lib/gdb.exp | 4 ++++
4 files changed, 21 insertions(+), 19 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-aarch64
in repository toolchain/ci/base-artifacts.
discards a84fd2c3 0: update: binutils-gcc: 1
new e3f074e2 0: update: binutils-gcc: 1
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a84fd2c3)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_gcc_check/master-aarch64 [...]
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
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:
01-reset_artifacts/console.log.xz | Bin 1528 -> 1552 bytes
02-prepare_abe/console.log.xz | Bin 2720 -> 2752 bytes
03-build_abe-binutils/console.log.xz | Bin 37592 -> 38068 bytes
04-build_abe-gcc/console.log.xz | Bin 206400 -> 207160 bytes
05-build_abe-dejagnu/console.log.xz | Bin 3856 -> 3836 bytes
06-build_abe-check_gcc/console.log.xz | Bin 2836 -> 2444 bytes
07-check_regression/console.log.xz | Bin 3332 -> 4284 bytes
07-check_regression/fails.sum | 2 +-
07-check_regression/results.compare | 23 +-
07-check_regression/results.compare2 | 383 ++-
07-check_regression/results.regressions | 23 +-
08-update_baseline/console.log | 868 ++++--
08-update_baseline/fails.sum | 2 +-
08-update_baseline/results.compare | 23 +-
08-update_baseline/results.compare2 | 383 ++-
08-update_baseline/results.regressions | 23 +-
jenkins/manifest.sh | 12 +-
sumfiles/g++.log.xz | Bin 3473712 -> 3467716 bytes
sumfiles/g++.sum | 132 +-
sumfiles/gcc.log.xz | Bin 2984012 -> 2981816 bytes
sumfiles/gcc.sum | 5002 ++++++++++++++++---------------
sumfiles/gfortran.log.xz | Bin 1026660 -> 1024080 bytes
sumfiles/gfortran.sum | 40 +-
sumfiles/libatomic.log.xz | Bin 2192 -> 2188 bytes
sumfiles/libatomic.sum | 4 +-
sumfiles/libgomp.log.xz | Bin 190648 -> 190412 bytes
sumfiles/libgomp.sum | 298 +-
sumfiles/libitm.log.xz | Bin 2548 -> 2544 bytes
sumfiles/libitm.sum | 6 +-
sumfiles/libstdc++.log.xz | Bin 435548 -> 429020 bytes
sumfiles/libstdc++.sum | 12 +-
31 files changed, 4068 insertions(+), 3168 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.