* elflink.c (_bfd_elf_archive_symbol_lookup): Follow warning and

indirect links here.
This commit is contained in:
Alan Modra 2011-06-07 23:57:50 +00:00
parent ad6b52dd0b
commit 2a41f39647
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2011-06-08 Alan Modra <amodra@gmail.com>
* elflink.c (_bfd_elf_archive_symbol_lookup): Follow warning and
indirect links here.
2011-06-07 Joel Brobecker <brobecker@adacore.com>
* irix-core.c (irix_core_vec): Add match_priority field.

View File

@ -4911,7 +4911,7 @@ _bfd_elf_archive_symbol_lookup (bfd *abfd,
char *p, *copy;
size_t len, first;
h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, FALSE);
h = elf_link_hash_lookup (elf_hash_table (info), name, FALSE, FALSE, TRUE);
if (h != NULL)
return h;
@ -4934,14 +4934,14 @@ _bfd_elf_archive_symbol_lookup (bfd *abfd,
memcpy (copy, name, first);
memcpy (copy + first, name + first + 1, len - first);
h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, FALSE);
h = elf_link_hash_lookup (elf_hash_table (info), copy, FALSE, FALSE, TRUE);
if (h == NULL)
{
/* We also need to check references to the symbol without the
version. */
copy[first - 1] = '\0';
h = elf_link_hash_lookup (elf_hash_table (info), copy,
FALSE, FALSE, FALSE);
FALSE, FALSE, TRUE);
}
bfd_release (abfd, copy);