From: Richard Henderson Date: Wed, 29 Dec 1999 19:50:13 +0000 (+0000) Subject: * elflink.h (bfd_elf,size_dynamic_sections): Don't export all X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1320a4467ada0a1c850b6a5c3c0dd5423500d4df;p=pf3gnuchains%2Fpf3gnuchains3x.git * elflink.h (bfd_elf,size_dynamic_sections): Don't export all if no dynamic sections created. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 83fb6c5821..9522755bd4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +1999-12-29 Richard Henderson + + * elflink.h (bfd_elf,size_dynamic_sections): Don't export all + if no dynamic sections created. + 1999-12-27 Nick Clifton * peicode.h (pe_bfd_object_p): Only define for PE format diff --git a/bfd/elflink.h b/bfd/elflink.h index 01cb6d47f6..1cf6be991e 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2803,20 +2803,6 @@ NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath, if (dynobj == NULL) return true; - /* If we are supposed to export all symbols into the dynamic symbol - table (this is not the normal case), then do so. */ - if (export_dynamic) - { - struct elf_info_failed eif; - - eif.failed = false; - eif.info = info; - elf_link_hash_traverse (elf_hash_table (info), elf_export_symbol, - (PTR) &eif); - if (eif.failed) - return false; - } - if (elf_hash_table (info)->dynamic_sections_created) { struct elf_info_failed eif; @@ -2879,6 +2865,20 @@ NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath, } } + /* If we are supposed to export all symbols into the dynamic symbol + table (this is not the normal case), then do so. */ + if (export_dynamic) + { + struct elf_info_failed eif; + + eif.failed = false; + eif.info = info; + elf_link_hash_traverse (elf_hash_table (info), elf_export_symbol, + (PTR) &eif); + if (eif.failed) + return false; + } + /* Attach all the symbols to their version information. */ asvinfo.output_bfd = output_bfd; asvinfo.info = info;