mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* elflink.c (_bfd_elf_create_dynamic_sections): Mark .dynbss with
SEC_LINKER_CREATED.
This commit is contained in:
parent
6e15d39180
commit
77f3d02765
@ -1,3 +1,8 @@
|
||||
2003-08-06 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elflink.c (_bfd_elf_create_dynamic_sections): Mark .dynbss with
|
||||
SEC_LINKER_CREATED.
|
||||
|
||||
2003-08-05 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* elf32-arm.h (WILL_CALL_FINISH_DYNAMIC_SYMBOL): Define.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user