aboutsummaryrefslogtreecommitdiff
path: root/ld/emulparams/criself.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ld/emulparams/criself.sh')
-rw-r--r--ld/emulparams/criself.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/ld/emulparams/criself.sh b/ld/emulparams/criself.sh
index 0478f345af42..1d374ae44bbc 100644
--- a/ld/emulparams/criself.sh
+++ b/ld/emulparams/criself.sh
@@ -13,7 +13,12 @@ ALIGNMENT=32
TEXT_START_ADDR=0
# Put crt0 for flash/eprom etc. in this section.
-INITIAL_READONLY_SECTIONS='.startup : { KEEP(*(.startup)) }'
+INITIAL_READONLY_SECTIONS=
+if test -z "${CREATE_SHLIB}"; then
+ INITIAL_READONLY_SECTIONS=".interp ${RELOCATING-0} : { *(.interp) }"
+fi
+INITIAL_READONLY_SECTIONS="${INITIAL_READONLY_SECTIONS}
+ .startup : { KEEP(*(.startup)) }"
# Setting __Stext to . in TEXT_START_SYMBOLS doesn't get what we want
# most of the time, which is the start of all read-only sections;