mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* elf64-ppc.c (ppc64_elf_size_dynamic_sections): Don't allocate
space for bss .plt.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-05-31 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* elf64-ppc.c (ppc64_elf_size_dynamic_sections): Don't allocate
|
||||||
|
space for bss .plt.
|
||||||
|
|
||||||
2002-05-31 Graeme Peterson <gp@qnx.com>
|
2002-05-31 Graeme Peterson <gp@qnx.com>
|
||||||
|
|
||||||
* Makefile.am (BFD32_BACKENDS): Add elf32-i386qnx.lo.
|
* Makefile.am (BFD32_BACKENDS): Add elf32-i386qnx.lo.
|
||||||
|
@ -3923,6 +3923,10 @@ ppc64_elf_size_dynamic_sections (output_bfd, info)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* .plt is in the bss section. We don't initialise it. */
|
||||||
|
if ((s->flags & SEC_LOAD) == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
/* Allocate memory for the section contents. We use bfd_zalloc
|
/* Allocate memory for the section contents. We use bfd_zalloc
|
||||||
here in case unused entries are not reclaimed before the
|
here in case unused entries are not reclaimed before the
|
||||||
section's contents are written out. This should not happen,
|
section's contents are written out. This should not happen,
|
||||||
|
Reference in New Issue
Block a user