From 4779f1eb32461fa0fd4d40b802783603e3f1e42f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pawe=C5=82=20Sikora?= Date: Fri, 20 Oct 2006 21:02:44 +0000 Subject: [PATCH] - outdated. Changed files: binutils-pr3290.patch -> 1.3 binutils-pr3314.patch -> 1.2 --- binutils-pr3290.patch | 22 ---------------------- binutils-pr3314.patch | 27 --------------------------- 2 files changed, 49 deletions(-) delete mode 100644 binutils-pr3290.patch delete mode 100644 binutils-pr3314.patch diff --git a/binutils-pr3290.patch b/binutils-pr3290.patch deleted file mode 100644 index b6d218c..0000000 --- a/binutils-pr3290.patch +++ /dev/null @@ -1,22 +0,0 @@ -2006-09-29 H.J. Lu - - 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 index 2c94720..0000000 --- a/binutils-pr3314.patch +++ /dev/null @@ -1,27 +0,0 @@ -H.J. -2006-10-06 H.J. Lu - - 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 -- 2.44.0