diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2001-01-10 18:58:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2001-01-10 18:58:36 +0000 |
commit | 69f069696b3aa4a34a0cfac45a4f338129eb1efd (patch) | |
tree | f3cf7a8f5d0443bef0d05229b26fa986441e8dce /ld/scripttempl/h8500.sc | |
parent | de9d65b5dc1cb19594d17e7f9e6915aa511c4a79 (diff) | |
download | gdb-69f069696b3aa4a34a0cfac45a4f338129eb1efd.zip gdb-69f069696b3aa4a34a0cfac45a4f338129eb1efd.tar.gz gdb-69f069696b3aa4a34a0cfac45a4f338129eb1efd.tar.bz2 |
2001-01-10 Kazu Hirata <kazu@hxi.com>
* scripttempl/h8500.sc: Fix formatting.
* scripttempl/h8500b.sc: Likewise.
* scripttempl/h8500c.sc: Likewise.
* scripttempl/h8500m.sc: Likewise.
* scripttempl/h8500s.sc: Likewise.
Diffstat (limited to 'ld/scripttempl/h8500.sc')
-rw-r--r-- | ld/scripttempl/h8500.sc | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/ld/scripttempl/h8500.sc b/ld/scripttempl/h8500.sc index f6e88c6..6b889dd 100644 --- a/ld/scripttempl/h8500.sc +++ b/ld/scripttempl/h8500.sc @@ -12,27 +12,27 @@ OUTPUT_ARCH(${ARCH}) /* Code and data 64k total */ -SECTIONS -{ -.text ${RELOCATING+ 0x0000 } : - { +SECTIONS +{ +.text ${RELOCATING+ 0x0000} : + { *(.text) - ${RELOCATING+ _etext = . ; } + ${RELOCATING+ _etext = . ; } } .data ${RELOCATING+ . } : { *(.data) ${RELOCATING+ _edata = . ; } - } + } .rdata ${RELOCATING+ . } : { - *(.rdata); + *(.rdata); *(.strings) - + ${CONSTRUCTING+${TORS}} - } + } .bss ${RELOCATING+ . } : { @@ -46,20 +46,16 @@ SECTIONS { ${RELOCATING+ _stack = . ; } *(.stack) - } + } -.stab 0 ${RELOCATING+(NOLOAD)} : +.stab 0 ${RELOCATING+(NOLOAD)} : { [ .stab ] } - + .stabstr 0 ${RELOCATING+(NOLOAD)} : { [ .stabstr ] } } EOF - - - - |