2005-05-04 H.J. Lu <hongjiu.lu@intel.com>
* elflink.c (_bfd_elf_merge_symbol): Only skip weak definitions at the end, if a strong definition has already been seen.
This commit is contained in:
parent
8423293d34
commit
c5e2ceadb7
2 changed files with 9 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-05-04 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* elflink.c (_bfd_elf_merge_symbol): Only skip weak definitions
|
||||
at the end, if a strong definition has already been seen.
|
||||
|
||||
2005-05-04 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* section.c (struct bfd_section): Replace link_order_head and
|
||||
|
|
|
@ -1078,13 +1078,6 @@ _bfd_elf_merge_symbol (bfd *abfd,
|
|||
|| h->root.type == bfd_link_hash_undefined)
|
||||
*size_change_ok = TRUE;
|
||||
|
||||
/* Skip weak definitions of symbols that are already defined. */
|
||||
if (newdef && olddef && newweak && !oldweak)
|
||||
{
|
||||
*skip = TRUE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* NEWDYNCOMMON and OLDDYNCOMMON indicate whether the new or old
|
||||
symbol, respectively, appears to be a common symbol in a dynamic
|
||||
object. If a symbol appears in an uninitialized section, and is
|
||||
|
@ -1211,6 +1204,10 @@ _bfd_elf_merge_symbol (bfd *abfd,
|
|||
*size_change_ok = TRUE;
|
||||
}
|
||||
|
||||
/* Skip weak definitions of symbols that are already defined. */
|
||||
if (newdef && olddef && newweak && !oldweak)
|
||||
*skip = TRUE;
|
||||
|
||||
/* If the old symbol is from a dynamic object, and the new symbol is
|
||||
a definition which is not from a dynamic object, then the new
|
||||
symbol overrides the old symbol. Symbols from regular files
|
||||
|
|
Loading…
Reference in a new issue