* negative repeat count for x examines backwards * fortran: support structs/arrays with dynamically types fields * support MPX bound checking * support for the Rust language * 'catch syscall' now can catch groups of related syscalls * New (sub)commands: - skip {-file,-gfile,-function,-rfunction}: generic skip mechanism - maint {selftest,info line-table} - new-ui: create new user interface for GUI clients * (fast) tracepoints on s390x and ppc64le added to gdbserver * New target Andes NDS32 - Remove patch gdb-aarch64-v81-hwbreakpoints.diff (upstream) - Add patches from Fedora package: gdb-6.7-testsuite-stable-results.patch gdb-add-index-chmod.patch gdb-bison-old.patch gdb-container-rh-pkg.patch gdb-libexec-add-index.patch gdb-linux_perf-bundle.patch gdb-physname-pr11734-test.patch gdb-physname-pr12273-test.patch gdb-rhbz1007614-memleak-infpy_read_memory-test.patch gdb-rhbz1084404-ppc64-s390x-wrong-prologue-skip-O2-g-3of3.patch gdb-rhbz1149205-catch-syscall-after-fork-test.patch gdb-rhbz1156192-recursive-dlopen-test.patch gdb-rhbz1186476-internal-error-unqualified-name-re-set-test.patch gdb-rhbz1350436-type-printers-error.patch gdb-test-ivy-bridge.patch OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=151
19 lines
757 B
Diff
19 lines
757 B
Diff
Index: gdb-7.11.50.20160630/gdb/event-top.c
|
|
===================================================================
|
|
--- gdb-7.11.50.20160630.orig/gdb/event-top.c 2016-07-03 16:32:36.108342159 +0200
|
|
+++ gdb-7.11.50.20160630/gdb/event-top.c 2016-07-03 16:32:59.787523733 +0200
|
|
@@ -1252,6 +1252,13 @@
|
|
{
|
|
struct ui *ui = current_ui;
|
|
|
|
+#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
|