The GDB 7.8 features are: * Python Scripting - You can now access frame registers from Python scripts. - New attribute 'producer' for gdb.Symtab objects. * New Python-based convenience functions: - $_caller_is(name [, number_of_frames]) - $_caller_matches(regexp [, number_of_frames]) - $_any_caller_is(name [, number_of_frames]) - $_any_caller_matches(regexp [, number_of_frames]) * New commands - queue-signal signal-name-or-number Queue a signal to be delivered to the thread when it is resumed. * On resume, GDB now always passes the signal the program had stopped for to the thread the signal was sent to, even if the user changed threads before resuming. Previously GDB would often (but not always) deliver the signal to the thread that happens to be current at resume time. * Conversely, the "signal" command now consistently delivers the requested signal to the current thread. GDB now asks for confirmation if the program had stopped for a signal and the user switched threads meanwhile. * "breakpoint always-inserted" modes "off" and "auto" merged. Now, when 'breakpoint always-inserted mode' is set to "off", GDB won't remove breakpoints from the target until all threads stop, even in non-stop mode. The "auto" mode has been removed, and "off" is now the default mode. * MI changes - The -list-thread-groups command outputs an exit-code field for inferiors that have exited. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=115
54 lines
1.7 KiB
Diff
54 lines
1.7 KiB
Diff
commit 7a270e0c9ba0eb738a4c30258ab29c09963fcd4d
|
|
Author: Alexander Klimov <alserkli@inbox.ru>
|
|
Date: Tue Jan 27 19:56:45 2015 +0200
|
|
|
|
Fix build failure in symfile.c::unmap_overlay_command (GCC5 bug)
|
|
|
|
Compilation of (GDB) 7.9.50.20150127-cvs with (GCC) 5.0.0 20150127
|
|
fails with
|
|
|
|
In file included from symfile.c:32:0:
|
|
symfile.c: In function 'unmap_overlay_command':
|
|
objfiles.h:628:3: error: 'sec' may be used uninitialized in this
|
|
function [-Werror=maybe-uninitialized]
|
|
for (osect = objfile->sections; osect < objfile->sections_end; osect++) \
|
|
^
|
|
symfile.c:3442:23: note: 'sec' was declared here
|
|
struct obj_section *sec;
|
|
^
|
|
cc1: all warnings being treated as errors
|
|
make[2]: *** [symfile.o] Error 1
|
|
make[2]: Leaving directory `gdb/gdb'
|
|
|
|
While the bug was reported to GCC as
|
|
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64823>,
|
|
the attached patch simply initializes sec with NULL.
|
|
|
|
gdb/ChangeLog:
|
|
|
|
* symfile.c (unmap_overlay_command): Initialize sec to NULL.
|
|
|
|
Tested on x86_64-linux.
|
|
|
|
### a/gdb/ChangeLog
|
|
### b/gdb/ChangeLog
|
|
## -1,3 +1,7 @@
|
|
+2015-01-29 Joel Brobecker <brobecker@adacore.com> (tiny patch)
|
|
+
|
|
+ * symfile.c (unmap_overlay_command): Initialize sec to NULL.
|
|
+
|
|
2015-01-27 Doug Evans <dje@google.com>
|
|
|
|
* NEWS: Mention gdb.Objfile.username.
|
|
--- a/gdb/symfile.c
|
|
+++ b/gdb/symfile.c
|
|
@@ -3439,7 +3439,7 @@ static void
|
|
unmap_overlay_command (char *args, int from_tty)
|
|
{
|
|
struct objfile *objfile;
|
|
- struct obj_section *sec;
|
|
+ struct obj_section *sec = NULL;
|
|
|
|
if (!overlay_debugging)
|
|
error (_("Overlay debugging not enabled. "
|