2002-08-13 H.J. Lu <hjl@gnu.org>
* elflink.h (NAME(bfd_elf,size_dynamic_sections): Don't count definitions in shared objects when checking symbol with undefined version.
This commit is contained in:
parent
ebafbe8353
commit
c828c7718e
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2002-08-13 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* elflink.h (NAME(bfd_elf,size_dynamic_sections): Don't count
|
||||||
|
definitions in shared objects when checking symbol with
|
||||||
|
undefined version.
|
||||||
|
|
||||||
2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
|
2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
|
||||||
|
|
||||||
* elf32-m68hc11.c (elf32_m68hc11_gc_mark_hook): New for section GC.
|
* elf32-m68hc11.c (elf32_m68hc11_gc_mark_hook): New for section GC.
|
||||||
|
|
|
@ -3068,8 +3068,11 @@ NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath,
|
||||||
}
|
}
|
||||||
free (newname);
|
free (newname);
|
||||||
|
|
||||||
/* Mark this version if there is a definition. */
|
/* Mark this version if there is a definition and it is
|
||||||
|
not defined in a shared object. */
|
||||||
if (newh != NULL
|
if (newh != NULL
|
||||||
|
&& ((newh->elf_link_hash_flags
|
||||||
|
& ELF_LINK_HASH_DEF_DYNAMIC) == 0)
|
||||||
&& (newh->root.type == bfd_link_hash_defined
|
&& (newh->root.type == bfd_link_hash_defined
|
||||||
|| newh->root.type == bfd_link_hash_defweak))
|
|| newh->root.type == bfd_link_hash_defweak))
|
||||||
d->symver = 1;
|
d->symver = 1;
|
||||||
|
|
Loading…
Reference in a new issue