2000-11-22 Philip Blundell <pb@futuretv.com>
* cofflink.c (_bfd_coff_generic_relocate_section): Don't object to weak undefined symbols.
This commit is contained in:
parent
7f7e9482db
commit
bc7a577dc7
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-11-22 Philip Blundell <pb@futuretv.com>
|
||||
|
||||
* cofflink.c (_bfd_coff_generic_relocate_section): Don't object to
|
||||
weak undefined symbols.
|
||||
|
||||
2000-11-24 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* archures.c (bfd_mach_arm_5TE): Define.
|
||||
|
|
|
@ -2937,6 +2937,9 @@ _bfd_coff_generic_relocate_section (output_bfd, info, input_bfd,
|
|||
+ sec->output_offset);
|
||||
}
|
||||
|
||||
else if (h->root.type == bfd_link_hash_undefweak)
|
||||
val = 0;
|
||||
|
||||
else if (! info->relocateable)
|
||||
{
|
||||
if (! ((*info->callbacks->undefined_symbol)
|
||||
|
|
Loading…
Reference in a new issue