mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 09:09:16 +08:00
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:
@ -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>
|
2000-11-24 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* archures.c (bfd_mach_arm_5TE): Define.
|
* archures.c (bfd_mach_arm_5TE): Define.
|
||||||
|
@ -2937,6 +2937,9 @@ _bfd_coff_generic_relocate_section (output_bfd, info, input_bfd,
|
|||||||
+ sec->output_offset);
|
+ sec->output_offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (h->root.type == bfd_link_hash_undefweak)
|
||||||
|
val = 0;
|
||||||
|
|
||||||
else if (! info->relocateable)
|
else if (! info->relocateable)
|
||||||
{
|
{
|
||||||
if (! ((*info->callbacks->undefined_symbol)
|
if (! ((*info->callbacks->undefined_symbol)
|
||||||
|
Reference in New Issue
Block a user