From: Steve Chamberlain Date: Tue, 16 Jun 1992 17:12:51 +0000 (+0000) Subject: Bug fixes for Hitachi X-Git-Tag: gdb-4_18~21677 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=305d9b19c8fcfecdd2d5487e1ea03d355df0f622;p=external%2Fbinutils.git Bug fixes for Hitachi --- 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} }