mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* emulparms/elf64hppa.sh (OTHER_READWRITE_SECTIONS): Put .plt
at the start of the .dlt output section.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Sep 13 00:17:18 1999 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* emulparms/elf64hppa.sh (OTHER_READWRITE_SECTIONS): Put .plt
|
||||||
|
at the start of the .dlt output section.
|
||||||
|
|
||||||
1999-09-12 Ian Lance Taylor <ian@zembu.com>
|
1999-09-12 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
* pe.em: Don't include "../bfd/libbfd.h".
|
* pe.em: Don't include "../bfd/libbfd.h".
|
||||||
|
@ -18,7 +18,16 @@ OTHER_READONLY_SECTIONS='.PARISC.unwind : { *(.PARISC.unwind) } .stubs : { *(.st
|
|||||||
# The PA64 ELF port treats .plt sections differently than most. We also have
|
# The PA64 ELF port treats .plt sections differently than most. We also have
|
||||||
# to create a .opd section. Combine the .opd, .plt and .dlt together into a
|
# to create a .opd section. Combine the .opd, .plt and .dlt together into a
|
||||||
# single .dlt section in the output file.
|
# single .dlt section in the output file.
|
||||||
OTHER_READWRITE_SECTIONS='.dlt : { *(.opd) *(.plt) *(.dlt) }'
|
#
|
||||||
|
# We have temporarily moved the .plt input section to the front of the
|
||||||
|
# .dlt output section. This was __gp will be near .plt, regardless of the
|
||||||
|
# size of .opd.
|
||||||
|
#
|
||||||
|
# In the near future the code to compute __gp will be improved and we can
|
||||||
|
# move .opd to the start of the .dlt again.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
OTHER_READWRITE_SECTIONS='.dlt : { *(.plt) *(.dlt) *(.opd) }'
|
||||||
|
|
||||||
# The PA64 ELF port has two additional bss sections. huge bss and thread bss.
|
# The PA64 ELF port has two additional bss sections. huge bss and thread bss.
|
||||||
# Make sure they end up in the appropriate location. We also have to set
|
# Make sure they end up in the appropriate location. We also have to set
|
||||||
|
Reference in New Issue
Block a user