* Per-inferior thread numbers. * Breakpoint "explicit locations" (via CLI and GDB/MI). * New convenience variables ($_gthread, $_inferior). * Record btrace now supports non-stop mode. * Various improvements on AArch64 GNU/Linux: - Multi-architecture debugging support. - displaced stepping. - tracepoint support added in GDBserver. * In Ada, the overloads selection menu provides the parameter types and return types for the matching overloaded subprograms. * Various remote protocol improvements, including several new packets which can be used to support features such as follow-exec-mode, exec catchpoints, syscall catchpoints, etc. * Some minor improvements in the Python API for extending GDB. - Added new patches from Fedora: gdb-fedora-libncursesw.patch gdb-fortran-stride-intel-1of6.patch gdb-fortran-stride-intel-2of6.patch gdb-fortran-stride-intel-3of6.patch gdb-fortran-stride-intel-4of6.patch gdb-fortran-stride-intel-5of6.patch gdb-fortran-stride-intel-6of6-nokfail.patch gdb-fortran-stride-intel-6of6.patch gdb-opcodes-clflushopt-test.patch gdb-testsuite-readline63-sigint.patch - Removed obsolete patches: gdb-6.3-bz231832-obstack-2gb.patch gdb-pahole-python2.patch gdb-probes-based-interface-robust-1of2.patch OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=132
18 lines
780 B
Diff
18 lines
780 B
Diff
diff -dup -rup gdb-7.10.50.20160106-orig/gdb/event-top.c gdb-7.10.50.20160106/gdb/event-top.c
|
|
--- gdb-7.10.50.20160106-orig/gdb/event-top.c 2016-01-09 14:51:02.324243506 +0100
|
|
+++ gdb-7.10.50.20160106/gdb/event-top.c 2016-01-09 14:51:33.029434121 +0100
|
|
@@ -1033,6 +1033,13 @@ set_async_editing_command (char *args, i
|
|
void
|
|
gdb_setup_readline (void)
|
|
{
|
|
+#ifdef NEED_RL_STATE_FEDORA_GDB
|
|
+ /* 6.2 regression: no longed asks for --more--
|
|
+ gdb.base/readline-ask.exp
|
|
+ https://bugzilla.redhat.com/show_bug.cgi?id=701131 */
|
|
+ RL_SETSTATE (RL_STATE_FEDORA_GDB);
|
|
+
|
|
+#endif
|
|
/* This function is a noop for the sync case. The assumption is
|
|
that the sync setup is ALL done in gdb_init, and we would only
|
|
mess it up here. The sync stuff should really go away over
|