2009-08-04 05:37:29 +00:00
|
|
|
Index: gdb-6.8.50.20090802/gdb/symfile.c
|
2006-08-24 06:18:06 +00:00
|
|
|
===================================================================
|
2009-08-04 05:37:29 +00:00
|
|
|
--- gdb-6.8.50.20090802.orig/gdb/symfile.c 2009-08-03 12:29:58.000000000 +0200
|
|
|
|
+++ gdb-6.8.50.20090802/gdb/symfile.c 2009-08-03 12:40:58.000000000 +0200
|
|
|
|
@@ -4012,6 +4012,12 @@ symfile_dummy_outputs (bfd *abfd, asecti
|
2006-08-24 06:18:06 +00:00
|
|
|
bfd_byte *
|
|
|
|
symfile_relocate_debug_section (bfd *abfd, asection *sectp, bfd_byte *buf)
|
|
|
|
{
|
|
|
|
+ /* Executable files have all the relocations already resolved.
|
|
|
|
+ * Handle files linked with --emit-relocs.
|
|
|
|
+ * http://sources.redhat.com/ml/gdb/2006-08/msg00137.html */
|
|
|
|
+ if ((abfd->flags & EXEC_P) != 0)
|
|
|
|
+ return NULL;
|
|
|
|
+
|
2009-08-04 05:37:29 +00:00
|
|
|
/* We're only interested in sections with relocation
|
2006-08-24 06:18:06 +00:00
|
|
|
information. */
|
|
|
|
if ((sectp->flags & SEC_RELOC) == 0)
|