aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2000-07-17 22:41:08 +0000
committerHans-Peter Nilsson <hp@axis.com>2000-07-17 22:41:08 +0000
commit53db15ed2a5bfdd1d1bfefb96212f9b48b436cc4 (patch)
treebc75895df55c1ecd52bb529c40c3f524214d672f /ld/scripttempl
parentdf09b665310b1ee5d618eba1c55cd8f37e7e86fb (diff)
downloadfsf-binutils-gdb-53db15ed2a5bfdd1d1bfefb96212f9b48b436cc4.zip
fsf-binutils-gdb-53db15ed2a5bfdd1d1bfefb96212f9b48b436cc4.tar.gz
fsf-binutils-gdb-53db15ed2a5bfdd1d1bfefb96212f9b48b436cc4.tar.bz2
* scripttempl/elf.sc (.init): Only do ${INIT_START} and
${INIT_END} if relocating. (.fini): Likewise ${FINI_START} and ${FINI_END}.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/elf.sc8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc
index 0e56d8a..1f5c716 100644
--- a/ld/scripttempl/elf.sc
+++ b/ld/scripttempl/elf.sc
@@ -198,9 +198,9 @@ SECTIONS
.init ${RELOCATING-0} :
{
- ${INIT_START}
+ ${RELOCATING+${INIT_START}}
KEEP (*(.init))
- ${INIT_END}
+ ${RELOCATING+${INIT_END}}
} =${NOP-0}
${DATA_PLT-${BSS_PLT-${PLT}}}
@@ -217,9 +217,9 @@ SECTIONS
} =${NOP-0}
.fini ${RELOCATING-0} :
{
- ${FINI_START}
+ ${RELOCATING+${FINI_START}}
KEEP (*(.fini))
- ${FINI_END}
+ ${RELOCATING+${FINI_END}}
} =${NOP-0}
${RELOCATING+PROVIDE (__etext = .);}
${RELOCATING+PROVIDE (_etext = .);}