From 77f3d0276594b6923afade998e211a09933c5f0f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 6 Aug 2003 01:27:11 +0000 Subject: [PATCH] * elflink.c (_bfd_elf_create_dynamic_sections): Mark .dynbss with SEC_LINKER_CREATED. --- bfd/ChangeLog | 5 +++++ bfd/elflink.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3562ae34e5..1ca2af1a6f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-08-06 Alan Modra + + * elflink.c (_bfd_elf_create_dynamic_sections): Mark .dynbss with + SEC_LINKER_CREATED. + 2003-08-05 Daniel Jacobowitz * elf32-arm.h (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define. diff --git a/bfd/elflink.c b/bfd/elflink.c index cb6b0b2ba1..740f5d8505 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -309,7 +309,7 @@ _bfd_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info) section into the .bss section of the final image. */ s = bfd_make_section (abfd, ".dynbss"); if (s == NULL - || ! bfd_set_section_flags (abfd, s, SEC_ALLOC)) + || ! bfd_set_section_flags (abfd, s, SEC_ALLOC | SEC_LINKER_CREATED)) return FALSE; /* The .rel[a].bss section holds copy relocs. This section is not