From: Ian Lance Taylor Date: Tue, 9 Apr 1996 15:46:41 +0000 (+0000) Subject: * aoutx.h (aout_link_add_symbols): Always call add_dynamic_symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1b45745b47b5f4886442fe16f09bda1c2ec4965;p=binutils-gdb.git * aoutx.h (aout_link_add_symbols): Always call add_dynamic_symbols entry point, not just for DYNAMIC objects. * sunos.c (sunos_add_dynamic_symbols): Always call sunos_create_dynamic_sections. If called with a non DYNAMIC object, don't do anything else. (sunos_add_one_symbol): Don't call sunos_create_dynamic_sections. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9ed226ea8b0..c6ae8ca9387 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +Tue Apr 9 11:44:21 1996 Ian Lance Taylor + + * aoutx.h (aout_link_add_symbols): Always call add_dynamic_symbols + entry point, not just for DYNAMIC objects. + * sunos.c (sunos_add_dynamic_symbols): Always call + sunos_create_dynamic_sections. If called with a non DYNAMIC + object, don't do anything else. + (sunos_add_one_symbol): Don't call sunos_create_dynamic_sections. + Mon Apr 8 12:09:36 1996 Ian Lance Taylor * configure.in: Permit --enable-shared to specify a list of diff --git a/bfd/aoutx.h b/bfd/aoutx.h index d7a7fd67b00..17b869e1cc5 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -3182,8 +3182,7 @@ aout_link_add_symbols (abfd, info) else copy = true; - if ((abfd->flags & DYNAMIC) != 0 - && aout_backend_info (abfd)->add_dynamic_symbols != NULL) + if (aout_backend_info (abfd)->add_dynamic_symbols != NULL) { if (! ((*aout_backend_info (abfd)->add_dynamic_symbols) (abfd, info, &syms, &sym_count, &strings)))