source: rtems-source-builder/patches/binutils-2.20.1-rtems4.10-20100826.diff @ 4fe2192

4.104.114.95
Last change on this file since 4fe2192 was 4fe2192, checked in by Chris Johns <chrisj@…>, on 11/05/12 at 12:29:00

Initial import.

  • Property mode set to 100644
File size: 1.8 KB
  • bfd/ChangeLog.rtems

    diff -Naur binutils-2.20.1.orig/bfd/ChangeLog.rtems binutils-2.20.1/bfd/ChangeLog.rtems
    old new  
     12010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
     2 
     3        PR ld/11939
     4        * elflink.c (elf_link_add_object_symbols): Don't set
     5        unique_global for non-ELF hash link table.
     6
  • binutils-2.20.1

    diff -Naur binutils-2.20.1.orig/bfd/elflink.c binutils-2.20.1/bfd/elflink.c
    old new  
    41544154        h = (struct elf_link_hash_entry *) h->root.u.i.link;
    41554155
    41564156      *sym_hash = h;
    4157       h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
     4157      if (is_elf_hash_table (htab))
     4158        h->unique_global = (flags & BSF_GNU_UNIQUE) != 0;
    41584159
    41594160      new_weakdef = FALSE;
    41604161      if (dynamic
  • bfd/Makefile.am

    diff -Naur binutils-2.20.1.orig/bfd/Makefile.am binutils-2.20.1/bfd/Makefile.am
    old new  
    44ACLOCAL_AMFLAGS = -I . -I .. -I ../config
    55
    66# Uncomment the following line when doing a release.
    7 # RELEASE=y
     7RELEASE=y
    88
    99INCDIR = $(srcdir)/../include
    1010CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
  • bfd/Makefile.in

    diff -Naur binutils-2.20.1.orig/bfd/Makefile.in binutils-2.20.1/bfd/Makefile.in
    old new  
    317317ACLOCAL_AMFLAGS = -I . -I .. -I ../config
    318318
    319319# Uncomment the following line when doing a release.
    320 # RELEASE=y
     320RELEASE = y
    321321INCDIR = $(srcdir)/../include
    322322CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
    323323SUBDIRS = doc po
Note: See TracBrowser for help on using the repository browser.