From: Hans-Peter Nilsson Date: Mon, 17 Jul 2000 22:41:08 +0000 (+0000) Subject: * scripttempl/elf.sc (.init): Only do ${INIT_START} and X-Git-Tag: newlib-1_9_0~1465 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53db15ed2a5bfdd1d1bfefb96212f9b48b436cc4;p=external%2Fbinutils.git * scripttempl/elf.sc (.init): Only do ${INIT_START} and ${INIT_END} if relocating. (.fini): Likewise ${FINI_START} and ${FINI_END}. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index d25865b..61d9c5f 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2000-07-18 Hans-Peter Nilsson + + * scripttempl/elf.sc (.init): Only do ${INIT_START} and + ${INIT_END} if relocating. + (.fini): Likewise ${FINI_START} and ${FINI_END}. + 2000-07-16 Charles Wilson * src/ld/emultempl/pe.em (gld_*_open_dynamic_archive): New search 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 = .);}