Blame SOURCES/gdb-6.5-bz203661-emit-relocs.patch

7a6771
Index: gdb-7.4.50.20120602/gdb/symfile.c
7a6771
===================================================================
7a6771
--- gdb-7.4.50.20120602.orig/gdb/symfile.c	2012-06-02 18:25:20.000000000 +0200
7a6771
+++ gdb-7.4.50.20120602/gdb/symfile.c	2012-06-02 18:26:36.145232057 +0200
7a6771
@@ -3630,6 +3630,12 @@ default_symfile_relocate (struct objfile
7a6771
      DWO file.  */
7a6771
   bfd *abfd = sectp->owner;
7a6771
 
7a6771
+  /* Executable files have all the relocations already resolved.
7a6771
+     Handle files linked with --emit-relocs.
7a6771
+     http://sources.redhat.com/ml/gdb/2006-08/msg00137.html  */
7a6771
+  if ((abfd->flags & EXEC_P) != 0)
7a6771
+    return NULL;
7a6771
+
7a6771
   /* We're only interested in sections with relocation
7a6771
      information.  */
7a6771
   if ((sectp->flags & SEC_RELOC) == 0)