aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-06-16 17:12:51 +0000
committerSteve Chamberlain <sac@cygnus>1992-06-16 17:12:51 +0000
commit305d9b19c8fcfecdd2d5487e1ea03d355df0f622 (patch)
treeee76fa29cc840e7e9dfb2d4b9ae20dbbbe5e8669
parentd1140eb5e37d7c71ebcf3cf6df810df081cc1777 (diff)
downloadfsf-binutils-gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.zip
fsf-binutils-gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.tar.gz
fsf-binutils-gdb-305d9b19c8fcfecdd2d5487e1ea03d355df0f622.tar.bz2
Bug fixes for Hitachi
-rwxr-xr-xld/h8300hms.sc-sh8
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}
}