From: H.J. Lu Date: Sun, 12 Nov 2017 15:25:26 +0000 (-0800) Subject: ld: Add OTHER_PLT_SECTIONS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce3ad333570333287842ed20f55220534ad4a025;p=binutils-gdb.git 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. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 2b6a334ace3..59aff56f6bc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,14 @@ +2017-11-12 H.J. Lu + + * 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. + 2017-11-09 H.J. Lu * emultempl/elf32.em (gld${EMULATION_NAME}_get_script): Reformat diff --git a/ld/emulparams/elf32_x86_64.sh b/ld/emulparams/elf32_x86_64.sh index 03f9d830567..9ce6533bd93 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 084497c2309..2cef106e3dc 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 863027b57b4..d910b653c36 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 09f3cdac079..d8c6e54894c 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) } " diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index c0845c5952e..9f291b359f8 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -37,6 +37,7 @@ # writeable data sections. # OTHER_GOT_SYMBOLS - symbols defined just before .got. # OTHER_GOT_SECTIONS - sections just after .got. +# OTHER_PLT_SECTIONS - sections just after .plt. # OTHER_SDATA_SECTIONS - sections just after .sdata. # OTHER_BSS_SYMBOLS - symbols that appear at the start of the # .bss section besides __bss_start. @@ -484,7 +485,7 @@ cat <