From 305d9b19c8fcfecdd2d5487e1ea03d355df0f622 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Tue, 16 Jun 1992 17:12:51 +0000 Subject: [PATCH] Bug fixes for Hitachi --- ld/h8300hms.sc-sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ld/h8300hms.sc-sh b/ld/h8300hms.sc-sh index ca19afbba9f..6eab5c2e99b 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} } -- 2.30.2