diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 3 | ||||
-rw-r--r-- | bfd/xcofflink.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ddec123ed3..a9f4f956d9 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,8 @@ Thu Nov 2 23:16:39 1995 Ian Lance Taylor <ian@cygnus.com> + * xcofflink.c (_bfd_ppc_xcoff_relocate_section): Don't warn about + an undefined symbol in a shared link. + * linker.c (_bfd_generic_link_add_one_symbol): Correct type of oldtype from bfd_link_order_type to bfd_link_hash_type. From phdm@info.ucl.ac.be (Philippe De Muyter). diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c index a76a5373c8..8c38dd6ec4 100644 --- a/bfd/xcofflink.c +++ b/bfd/xcofflink.c @@ -5172,7 +5172,8 @@ _bfd_ppc_xcoff_relocate_section (output_bfd, info, input_bfd, /* Every symbol in a shared object is defined somewhere. */ val = 0; } - else if (! info->relocateable) + else if (! info->relocateable + && ! info->shared) { if (! ((*info->callbacks->undefined_symbol) (info, h->root.root.string, input_bfd, input_section, |