]> git.pld-linux.org Git - packages/binutils.git/commitdiff
- outdated.
authorPaweł Sikora <pluto@pld-linux.org>
Fri, 20 Oct 2006 21:02:44 +0000 (21:02 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    binutils-pr3290.patch -> 1.3
    binutils-pr3314.patch -> 1.2

binutils-pr3290.patch [deleted file]
binutils-pr3314.patch [deleted file]

diff --git a/binutils-pr3290.patch b/binutils-pr3290.patch
deleted file mode 100644 (file)
index b6d218c..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-2006-09-29  H.J. Lu  <hongjiu.lu@intel.com>
-
-       PR ld/3290
-       * elflink.c (elf_link_add_object_symbols): Hide definitions in
-       debug sections.
-
---- bfd/elflink.c.debug        2006-09-29 09:00:21.000000000 -0700
-+++ bfd/elflink.c      2006-09-30 18:30:40.000000000 -0700
-@@ -4137,6 +4137,13 @@ elf_link_add_object_symbols (bfd *abfd, 
-               dynsym = TRUE;
-           }
-+        if (definition && (sec->flags & SEC_DEBUGGING))
-+          {
-+            /* We don't want to make debug symbol dynamic.  */
-+            (*bed->elf_backend_hide_symbol) (info, h, TRUE);
-+            dynsym = FALSE;
-+          }
-+
-         /* Check to see if we need to add an indirect symbol for
-            the default name.  */
-         if (definition || h->root.type == bfd_link_hash_common)
diff --git a/binutils-pr3314.patch b/binutils-pr3314.patch
deleted file mode 100644 (file)
index 2c94720..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-H.J.
-2006-10-06  H.J. Lu  <hongjiu.lu@intel.com>
-
-       PR ld/3314
-       * elf.c (assign_file_positions_for_non_load_sections): Don't
-       page align empty SHF_ALLOC sections.  
-
---- bfd/elf.c.empty    2006-09-29 09:00:21.000000000 -0700
-+++ bfd/elf.c  2006-10-06 09:14:04.000000000 -0700
-@@ -4663,11 +4663,12 @@ assign_file_positions_for_non_load_secti
-         if (hdr->sh_size != 0)
-           ((*_bfd_error_handler)
-            (_("%B: warning: allocated section `%s' not in segment"),
--              abfd,
--              (hdr->bfd_section == NULL
--               ? "*unknown*" 
--               : hdr->bfd_section->name)));
--        if ((abfd->flags & D_PAGED) != 0)
-+            abfd,
-+            (hdr->bfd_section == NULL
-+             ? "*unknown*"
-+             : hdr->bfd_section->name)));
-+        /* We don't need to page align empty sections.  */
-+        if ((abfd->flags & D_PAGED) != 0 && hdr->sh_size != 0)
-           off += vma_page_aligned_bias (hdr->sh_addr, off,
-                                         bed->maxpagesize);
-         else
This page took 0.162413 seconds and 4 git commands to generate.