mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
* elflink.c (elf_smash_syms): Expand comments.
(elf_link_add_object_symbols): Only call elf_smash_syms for as-needed dynamic objects.
This commit is contained in:
@ -1,5 +1,9 @@
|
||||
2005-02-02 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elflink.c (elf_smash_syms): Expand comments.
|
||||
(elf_link_add_object_symbols): Only call elf_smash_syms for
|
||||
as-needed dynamic objects.
|
||||
|
||||
* elfxx-ia64.c (elfNN_ia64_new_elf_hash_entry): Don't clear
|
||||
everything, just the field specific to ia64.
|
||||
* elf64-hppa.c (elf64_hppa_new_dyn_hash_entry): Likewise.
|
||||
|
@ -2815,7 +2815,12 @@ elf_add_dt_needed_tag (bfd *abfd,
|
||||
|
||||
/* Called via elf_link_hash_traverse, elf_smash_syms sets all symbols
|
||||
belonging to NOT_NEEDED to bfd_link_hash_new. We know there are no
|
||||
references to these symbols. */
|
||||
references from regular objects to these symbols.
|
||||
|
||||
??? Should we do something about references from other dynamic
|
||||
obects? If not, we potentially lose some warnings about undefined
|
||||
symbols. But how can we recover the initial undefined / undefweak
|
||||
state? */
|
||||
|
||||
struct elf_smash_syms_data
|
||||
{
|
||||
@ -4094,8 +4099,11 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
|
||||
free (isymbuf);
|
||||
isymbuf = NULL;
|
||||
|
||||
if (!add_needed)
|
||||
if (!add_needed
|
||||
&& (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0)
|
||||
{
|
||||
/* Remove symbols defined in an as-needed shared lib that wasn't
|
||||
needed. */
|
||||
struct elf_smash_syms_data inf;
|
||||
inf.not_needed = abfd;
|
||||
inf.htab = hash_table;
|
||||
|
Reference in New Issue
Block a user