aboutsummaryrefslogtreecommitdiff
path: root/ld/scripttempl
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1995-06-08 21:19:31 +0000
committerSteve Chamberlain <sac@cygnus>1995-06-08 21:19:31 +0000
commitba0784fe48b448739710c5443b655734cde5e664 (patch)
treeb7f4df803aa0d38eff1c27ef2d6c1aee20bd5563 /ld/scripttempl
parent0ef449dfadfdecafecd8c765e409070209205331 (diff)
downloadgdb-ba0784fe48b448739710c5443b655734cde5e664.zip
gdb-ba0784fe48b448739710c5443b655734cde5e664.tar.gz
gdb-ba0784fe48b448739710c5443b655734cde5e664.tar.bz2
* emulparams/armpe.sh, scriptempl/armpe.sc: Add end and stack.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r--ld/scripttempl/armpe.sc14
1 files changed, 9 insertions, 5 deletions
diff --git a/ld/scripttempl/armpe.sc b/ld/scripttempl/armpe.sc
index 6d7d45a..56a945d 100644
--- a/ld/scripttempl/armpe.sc
+++ b/ld/scripttempl/armpe.sc
@@ -20,11 +20,6 @@ SECTIONS
${RELOCATING+ etext = .};
}
- .bss BLOCK(0x1000) :
- {
- *(.bss)
- *(COMMON);
- }
.rdata BLOCK(0x1000) :
{
@@ -46,6 +41,7 @@ SECTIONS
*(.idata$7)
;
}
+
.CRT BLOCK(0x1000) :
{
*(.CRT$XCA)
@@ -82,6 +78,13 @@ SECTIONS
*(.drectve)
;
}
+ .bss BLOCK(0x1000) :
+ {
+ *(.bss)
+ *(COMMON);
+ end = . ;
+ }
+
.stab 0 ${RELOCATING+(NOLOAD)} :
{
[ .stab ]
@@ -91,5 +94,6 @@ SECTIONS
{
[ .stabstr ]
}
+ stack = 0x800000 ;
}
EOF