]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-6.5-bz203661-emit-relocs.patch
- update to gdb-7.0-7.fc12.src.rpm; but leave cactus patches as these seem newer
[packages/gdb.git] / gdb-6.5-bz203661-emit-relocs.patch
CommitLineData
7566401a 1Index: gdb-6.8.50.20090802/gdb/symfile.c
3a58abaf 2===================================================================
7566401a
ER
3--- gdb-6.8.50.20090802.orig/gdb/symfile.c 2009-08-03 12:29:58.000000000 +0200
4+++ gdb-6.8.50.20090802/gdb/symfile.c 2009-08-03 12:40:58.000000000 +0200
5@@ -4012,6 +4012,12 @@ symfile_dummy_outputs (bfd *abfd, asecti
3a58abaf
AM
6 bfd_byte *
7 symfile_relocate_debug_section (bfd *abfd, asection *sectp, bfd_byte *buf)
8 {
9+ /* Executable files have all the relocations already resolved.
10+ * Handle files linked with --emit-relocs.
11+ * http://sources.redhat.com/ml/gdb/2006-08/msg00137.html */
12+ if ((abfd->flags & EXEC_P) != 0)
13+ return NULL;
14+
7566401a 15 /* We're only interested in sections with relocation
3a58abaf
AM
16 information. */
17 if ((sectp->flags & SEC_RELOC) == 0)
This page took 0.040807 seconds and 4 git commands to generate.