mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
* elf.c (special_sections): Add .gnu.linkonce.b modelled on .bss.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2004-08-31 Eric Botcazou <ebotcazou@libertysurf.fr>
|
||||||
|
|
||||||
|
* elf.c (special_sections): Add .gnu.linkonce.b modelled on .bss.
|
||||||
|
|
||||||
2004-08-30 Nathanael Nerode <neroden@gcc.gnu.org>
|
2004-08-30 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||||
|
|
||||||
* acinclude.m4: Require AC_CANONICAL_TARGET, not AC_CANONICAL_SYSTEM.
|
* acinclude.m4: Require AC_CANONICAL_TARGET, not AC_CANONICAL_SYSTEM.
|
||||||
|
@ -2104,6 +2104,7 @@ bfd_section_from_elf_index (bfd *abfd, unsigned int index)
|
|||||||
static struct bfd_elf_special_section const special_sections[] =
|
static struct bfd_elf_special_section const special_sections[] =
|
||||||
{
|
{
|
||||||
{ ".bss", 4, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
|
{ ".bss", 4, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
|
||||||
|
{ ".gnu.linkonce.b",15, -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE },
|
||||||
{ ".comment", 8, 0, SHT_PROGBITS, 0 },
|
{ ".comment", 8, 0, SHT_PROGBITS, 0 },
|
||||||
{ ".data", 5, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
{ ".data", 5, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
||||||
{ ".data1", 6, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
{ ".data1", 6, 0, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
|
||||||
|
Reference in New Issue
Block a user