* 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
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
http://sourceware.org/ml/gdb-patches/2011-08/msg00331.html
|
|
Subject: [RFC] Work around PR libc/13097 "linux-vdso.so.1" #2
|
|
|
|
Hi,
|
|
|
|
missed the x86_64-m32 case:
|
|
|
|
gdb/
|
|
2011-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
Work around PR libc/13097.
|
|
* solib.c (update_solib_list): Ignore "linux-vdso.so.1".
|
|
|
|
Index: gdb-7.9.50.20150520/gdb/solib.c
|
|
===================================================================
|
|
--- gdb-7.9.50.20150520.orig/gdb/solib.c 2015-05-31 17:04:16.870802493 +0200
|
|
+++ gdb-7.9.50.20150520/gdb/solib.c 2015-05-31 17:04:38.824941054 +0200
|
|
@@ -893,8 +893,11 @@ update_solib_list (int from_tty, struct
|
|
|
|
TRY
|
|
{
|
|
- /* Fill in the rest of the `struct so_list' node. */
|
|
- if (!solib_map_sections (i))
|
|
+ /* Fill in the rest of the `struct so_list' node.
|
|
+ Work around PR libc/13097. */
|
|
+ if (!solib_map_sections (i)
|
|
+ && strcmp (i->so_original_name, "linux-vdso.so.1") != 0
|
|
+ && strcmp (i->so_original_name, "linux-gate.so.1") != 0)
|
|
{
|
|
not_found++;
|
|
if (not_found_filename == NULL)
|