diff options
author | Nick Clifton <nickc@redhat.com> | 2001-04-27 17:12:18 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-04-27 17:12:18 +0000 |
commit | 87748b32271dca951c949543fc14cb1ef2b5c992 (patch) | |
tree | 47bd23066af753d8b9e6e46d28f2eb9917386f7a /ld/scripttempl | |
parent | cc3f9cbbf767f6d2e07cf46508fc510f07042bc9 (diff) | |
download | gdb-87748b32271dca951c949543fc14cb1ef2b5c992.zip gdb-87748b32271dca951c949543fc14cb1ef2b5c992.tar.gz gdb-87748b32271dca951c949543fc14cb1ef2b5c992.tar.bz2 |
Add support for arm-vxworks target
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/armcoff.sc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ld/scripttempl/armcoff.sc b/ld/scripttempl/armcoff.sc index 9f9cd7c..4311f10 100644 --- a/ld/scripttempl/armcoff.sc +++ b/ld/scripttempl/armcoff.sc @@ -20,7 +20,7 @@ SECTIONS present): */ .text ${RELOCATING+ 0x8000} : { *(.init) - *(.text) + *(.text*) *(.glue_7t) *(.glue_7) *(.rdata) @@ -30,10 +30,11 @@ SECTIONS LONG (-1); *(.dtors); *(.dtor); LONG (0); } *(.fini) ${RELOCATING+ etext = .;} + ${RELOCATING+ _etext = .;} } .data ${RELOCATING+${DATA_ADDR-0x40000 + (. & 0xfffc0fff)}} : { ${RELOCATING+ __data_start__ = . ;} - *(.data) + *(.data*) ${RELOCATING+ __data_end__ = . ;} ${RELOCATING+ edata = .;} ${RELOCATING+ _edata = .;} |