diff options
author | Steve Chamberlain <sac@cygnus> | 1992-06-16 17:12:51 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-06-16 17:12:51 +0000 |
commit | 305d9b19c8fcfecdd2d5487e1ea03d355df0f622 (patch) | |
tree | ee76fa29cc840e7e9dfb2d4b9ae20dbbbe5e8669 /ld | |
parent | d1140eb5e37d7c71ebcf3cf6df810df081cc1777 (diff) | |
download | gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.zip gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.tar.gz gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.tar.bz2 |
Bug fixes for Hitachi
Diffstat (limited to 'ld')
-rwxr-xr-x | ld/h8300hms.sc-sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/h8300hms.sc-sh b/ld/h8300hms.sc-sh index ca19afb..6eab5c2 100755 --- a/ld/h8300hms.sc-sh +++ b/ld/h8300hms.sc-sh @@ -16,23 +16,23 @@ SECTIONS { *(.text) *(.strings) - _etext = .; + ${RELOCATING+_etext = .;} } ${RELOCATING+ > ram} .data : { *(.data) - _edata = .; + ${RELOCATING+_edata = .;} } ${RELOCATING+ > ram} .bss : { - ${RELOCATING+ _bss_start = .}; + ${RELOCATING+ _bss_start = .;} *(.bss) *(COMMON) ${RELOCATING+ _end = .}; } ${RELOCATING+ >ram} .stack : { - _stack = .; + ${RELOCATING+_stack = .;} *(.stack) } ${RELOCATING+ > topram} } |