diff options
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) } " |