]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - gdb/patches/gdb-6.5-bz203661-emit-relocs.patch
gdb: Update to version 7.12
[people/arne_f/ipfire-3.x.git] / gdb / patches / gdb-6.5-bz203661-emit-relocs.patch
diff --git a/gdb/patches/gdb-6.5-bz203661-emit-relocs.patch b/gdb/patches/gdb-6.5-bz203661-emit-relocs.patch
deleted file mode 100644 (file)
index 61e0d56..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: gdb-7.0.90.20100306/gdb/symfile.c
-===================================================================
---- gdb-7.0.90.20100306.orig/gdb/symfile.c     2010-03-06 23:20:35.000000000 +0100
-+++ gdb-7.0.90.20100306/gdb/symfile.c  2010-03-06 23:26:25.000000000 +0100
-@@ -3642,6 +3642,12 @@ default_symfile_relocate (struct objfile
- {
-   bfd *abfd = objfile->obfd;
-+  /* 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;
-+
-   /* We're only interested in sections with relocation
-      information.  */
-   if ((sectp->flags & SEC_RELOC) == 0)