diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-11-12 07:25:26 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-11-12 07:25:36 -0800 |
commit | ce3ad333570333287842ed20f55220534ad4a025 (patch) | |
tree | f47f1718ee158b129831517dd0ec3ddc1339b68b /ld/emulparams | |
parent | e3e53eed9c2f1ab82ae4a7683f474b4f6eb162c7 (diff) | |
download | gdb-ce3ad333570333287842ed20f55220534ad4a025.zip gdb-ce3ad333570333287842ed20f55220534ad4a025.tar.gz gdb-ce3ad333570333287842ed20f55220534ad4a025.tar.bz2 |
ld: Add OTHER_PLT_SECTIONS
OTHER_PLT_SECTIONS contains sections which should be placed right after
.plt section.
* emulparams/elf32_x86_64.sh (TINY_READONLY_SECTION): Renamed
to ...
(OTHER_PLT_SECTIONS): This.
* emulparams/elf_i386.sh: Likewise.
* emulparams/elf_iamcu.sh: Likewise.
* emulparams/elf_x86_64.sh: Likewise.
* scripttempl/elf.sc: Place ${OTHER_PLT_SECTIONS} just after
.plt.
Diffstat (limited to 'ld/emulparams')
-rw-r--r-- | ld/emulparams/elf32_x86_64.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf_i386.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf_iamcu.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf_x86_64.sh | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/ld/emulparams/elf32_x86_64.sh b/ld/emulparams/elf32_x86_64.sh index 03f9d83..9ce6533 100644 --- a/ld/emulparams/elf32_x86_64.sh +++ b/ld/emulparams/elf32_x86_64.sh @@ -21,8 +21,8 @@ LARGE_SECTIONS=yes LARGE_BSS_AFTER_BSS= SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 24 ? 24 : 0" IREL_IN_PLT= -# Reuse TINY_READONLY_SECTION which is placed right after .plt section. -TINY_READONLY_SECTION=" +# These sections are placed right after .plt section. +OTHER_PLT_SECTIONS=" .plt.got ${RELOCATING-0} : { *(.plt.got) } .plt.sec ${RELOCATING-0} : { *(.plt.sec) } " diff --git a/ld/emulparams/elf_i386.sh b/ld/emulparams/elf_i386.sh index 084497c..2cef106 100644 --- a/ld/emulparams/elf_i386.sh +++ b/ld/emulparams/elf_i386.sh @@ -17,8 +17,8 @@ GENERATE_PIE_SCRIPT=yes NO_SMALL_DATA=yes SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 12 ? 12 : 0" IREL_IN_PLT= -# Reuse TINY_READONLY_SECTION which is placed right after .plt section. -TINY_READONLY_SECTION=" +# These sections are placed right after .plt section. +OTHER_PLT_SECTIONS=" .plt.got ${RELOCATING-0} : { *(.plt.got) } .plt.sec ${RELOCATING-0} : { *(.plt.sec) } " diff --git a/ld/emulparams/elf_iamcu.sh b/ld/emulparams/elf_iamcu.sh index 863027b..d910b65 100644 --- a/ld/emulparams/elf_iamcu.sh +++ b/ld/emulparams/elf_iamcu.sh @@ -17,8 +17,8 @@ GENERATE_PIE_SCRIPT=yes NO_SMALL_DATA=yes SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 12 ? 12 : 0" IREL_IN_PLT= -# Reuse TINY_READONLY_SECTION which is placed right after .plt section. -TINY_READONLY_SECTION=" +# These sections are placed right after .plt section. +OTHER_PLT_SECTIONS=" .plt.got ${RELOCATING-0} : { *(.plt.got) } " diff --git a/ld/emulparams/elf_x86_64.sh b/ld/emulparams/elf_x86_64.sh index 09f3cda..d8c6e54 100644 --- a/ld/emulparams/elf_x86_64.sh +++ b/ld/emulparams/elf_x86_64.sh @@ -21,8 +21,8 @@ LARGE_SECTIONS=yes LARGE_BSS_AFTER_BSS= SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 24 ? 24 : 0" IREL_IN_PLT= -# Reuse TINY_READONLY_SECTION which is placed right after .plt section. -TINY_READONLY_SECTION=" +# These sections are placed right after .plt section. +OTHER_PLT_SECTIONS=" .plt.got ${RELOCATING-0} : { *(.plt.got) } .plt.sec ${RELOCATING-0} : { *(.plt.sec) } " |