From 2e4e77877cfa3943df1120b1651cbf759e56d4c1 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Wed, 25 May 2016 09:52:18 +0200 Subject: open_issues/binutils: binutils-gdb: 9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a (2016-02-10) --- open_issues/binutils.mdwn | 103 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 88 insertions(+), 15 deletions(-) (limited to 'open_issues') diff --git a/open_issues/binutils.mdwn b/open_issues/binutils.mdwn index 23783d07..e024ace8 100644 --- a/open_issues/binutils.mdwn +++ b/open_issues/binutils.mdwn @@ -47,8 +47,8 @@ git diff --patience --stat=$COLUMNS,$COLUMNS --patch --src-prefix=./ --dst-prefi --> -Last reviewed up to Git commit 96f9814df23564e16909bb5ba00de4a202c63417 -(2015-11-05). +Last reviewed up to Git commit 9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a +(2016-02-10). * Globally @@ -323,12 +323,25 @@ Last reviewed up to Git commit 96f9814df23564e16909bb5ba00de4a202c63417 `gdb/gdbserver/remote-utils.c` is the producer, whose `PATH_MAX` might differ from the consumer's. + * [high] In + 96f9814df23564e16909bb5ba00de4a202c63417..9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a: + + ../../W._C._Handy/gdb/gnu-nat.c: In function 'set_sig_thread_cmd': + ../../W._C._Handy/gdb/gnu-nat.c:2973:7: warning: implicit declaration of function 'thread_id_to_pid' [-Wimplicit-function-declaration] + ptid_t ptid = thread_id_to_pid (atoi (args)); + ^ + ../../W._C._Handy/gdb/gnu-nat.c:2973:7: error: invalid initializer + + Commit 5d5658a1d3c3eb2a09c03f2f0662a1c01963c869 renamed `thread_id_to_pid` + to `global_thread_id_to_ptid`. + # Build Here's a log of a binutils-gdb build run; this is from Git commit -96f9814df23564e16909bb5ba00de4a202c63417 (2015-11-05), plus `PATH_MAX` -hard-coded in `gdb/remote.c`, run on kepler.SCHWINGE +9ef9e6a6a0dd8f948708cb67c9afcfd0be40cb0a (2016-02-10), plus `PATH_MAX` +hard-coded in `gdb/remote.c`, and `global_thread_id_to_ptid` used instead of +`thread_id_to_pid` in `gdb/gnu-nat.c`, run on kepler.SCHWINGE and laplace.SCHWINGE. $ export LC_ALL=C @@ -345,7 +358,7 @@ sysroots. In the GDB build, there are compiler diagnostics reported in the MIG-generated stub files; thus no `-Werror` until that is resolved. This takes up around 1.5 GiB, and runs for [[17 min|performance#measure]] on -kepler.SCHWINGE and [[26 min|performance#measure]] on laplace.SCHWINGE. +kepler.SCHWINGE and [[19 min|performance#measure]] on laplace.SCHWINGE.