From: Jakub Jelinek Date: Mon, 23 Feb 2004 09:01:58 +0000 (+0000) Subject: * elflink.h (size_dynamic_sections): If not adding DT_FLAGS and X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=646411fba021b0739b3d7a134bb0d25cf5c027cf;p=binutils-gdb.git * elflink.h (size_dynamic_sections): If not adding DT_FLAGS and DF_BIND_NOW is set in info->flags, create DT_BIND_NOW dynamic entry. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 94d187649e3..0289a05d98b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2004-02-23 Jakub Jelinek + + * elflink.h (size_dynamic_sections): If not adding DT_FLAGS and + DF_BIND_NOW is set in info->flags, create DT_BIND_NOW dynamic entry. + 2004-02-21 H.J. Lu * elflink.c (_bfd_elf_merge_symbol): Properly handle undefined diff --git a/bfd/elflink.h b/bfd/elflink.h index c37d7398d01..96d5981aa51 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2434,6 +2434,11 @@ NAME(bfd_elf,size_dynamic_sections) (bfd *output_bfd, if (! elf_add_dynamic_entry (info, DT_FLAGS, info->flags)) return FALSE; } + else if (info->flags & DF_BIND_NOW) + { + if (! elf_add_dynamic_entry (info, DT_BIND_NOW, 0)) + return FALSE; + } if (info->flags_1) {