mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 20:43:45 +08:00
Make weak symbols SS_UNIVERSAL (ie. global)
This commit is contained in:
parent
87263c36d1
commit
409141842e
@ -1,3 +1,8 @@
|
||||
2000-09-26 Steve Ellcey <sje@cup.hp.com>
|
||||
|
||||
* som.c (som_bfd_derive_misc_symbol_info): Make weak symbols
|
||||
global by default.
|
||||
|
||||
2000-09-21 Alan Modra <alan@linuxcare.com.au>
|
||||
|
||||
* elf32-hppa.c (elf32_hppa_check_relocs): Fix weak sym handling in
|
||||
|
@ -4069,7 +4069,8 @@ som_bfd_derive_misc_symbol_info (abfd, sym, info)
|
||||
of common symbols was handled earlier! */
|
||||
if (bfd_is_und_section (sym->section))
|
||||
info->symbol_scope = SS_UNSAT;
|
||||
else if (sym->flags & BSF_EXPORT && ! bfd_is_com_section (sym->section))
|
||||
else if (sym->flags & (BSF_EXPORT | BSF_WEAK)
|
||||
&& ! bfd_is_com_section (sym->section))
|
||||
info->symbol_scope = SS_UNIVERSAL;
|
||||
/* Anything else which is not in the common section has scope
|
||||
SS_LOCAL. */
|
||||
|
Loading…
Reference in New Issue
Block a user