]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
patch ../102430045.patch
authorDoug Evans <dje@google.com>
Thu, 10 Dec 2015 20:00:31 +0000 (12:00 -0800)
committerDoug Evans <dje@google.com>
Thu, 10 Dec 2015 20:00:31 +0000 (12:00 -0800)
README.google
gdb/solib-svr4.c

index 96331601e11b698c6aa31b2077cc1dffbc86e170..020e361e07965562b71a45dad5c1272a98cfe637 100644 (file)
@@ -259,3 +259,8 @@ they are an ongoing maintenance burden.
 +      testsuite/
 +      * gdb.base/sepdebug.exp: Add test to verify two "Reading symbols ..."
 +      messages are printed.
+--- README.google      2015-09-05 18:44:15.000000000 -0700
++++ README.google      2015-09-05 18:49:14.000000000 -0700
+-      * solib-svr4.c (svr4_read_so_list): Ignore linux-vdso64.so.1, for ppc.
++      * solib-svr4.c (svr4_read_so_list): Ignore linux-vdso64.so.1, for ppc,
++      and update for -Wc++-compat changes.
index cca51b3748e3e133ad0e8a16e259af51d7d189ef..688f0adffb8357057d1055344d103d53e0af5c7b 100644 (file)
@@ -1398,9 +1398,9 @@ svr4_read_so_list (CORE_ADDR lm, CORE_ADDR prev_lm,
 #define LINUX_VDSO_NAME "linux-vdso.so.1"
 #define LINUX_GATE_NAME "linux-gate.so.1"
 #define LINUX_VDSO64_NAME "linux-vdso64.so.1" /* for ppc */
-      if (strcmp (new->so_name, LINUX_VDSO_NAME) == 0
-         || strcmp (new->so_name, LINUX_GATE_NAME) == 0
-         || strcmp (new->so_name, LINUX_VDSO64_NAME) == 0)
+      if (strcmp (newobj->so_name, LINUX_VDSO_NAME) == 0
+         || strcmp (newobj->so_name, LINUX_GATE_NAME) == 0
+         || strcmp (newobj->so_name, LINUX_VDSO64_NAME) == 0)
        {
          do_cleanups (old_chain);
          continue;