* emulparams/armelf.sh (OTHER_READONLY_SECTIONS): Do not emit

__exidx_{start,end} when not relocating.
This commit is contained in:
Mark Mitchell 2004-10-27 06:57:43 +00:00
parent 97ecf3226d
commit 6f372e19e7
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-10-26 Mark Mitchell <mark@codesourcery.com>
* emulparams/armelf.sh (OTHER_READONLY_SECTIONS): Do not emit
__exidx_{start,end} when not relocating.
2004-10-25 Mark Mitchell <mark@codesourcery.com>
* Makefile.in (earmsymbian.c): Depend on armbpabi.sc, not elf.sc.

View File

@ -12,9 +12,9 @@ OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;'
OTHER_SECTIONS='.note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }'
OTHER_READONLY_SECTIONS="
.ARM.extab ${RELOCATING-0} : { *(.ARM.extab${RELOCATING+* .gnu.linkonce.armextab.*}) }
__exidx_start = .;
${RELOCATING+ __exidx_start = .; }
.ARM.exidx ${RELOCATING-0} : { *(.ARM.exidx${RELOCATING+* .gnu.linkonce.armexidx.*}) }
__exidx_end = .;"
${RELOCATING+ __exidx_end = .; }"
DATA_START_SYMBOLS='__data_start = . ;';