summaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorBernd Schmidt <bernd.schmidt@analog.com>2010-06-08 20:15:16 +0000
committerBernd Schmidt <bernd.schmidt@analog.com>2010-06-08 20:15:16 +0000
commit5194322898e7dbb3be56487e207ca86f54434d6f (patch)
tree83caf3dcb5a7ea2ea9ead7ec796e36509a182f88 /ld
parent2913f886df8edb1a410363b9eb7363d3f79633af (diff)
downloadbinutils-redhat-5194322898e7dbb3be56487e207ca86f54434d6f.tar.gz
* emulparams/elf32_tic6x_le.sh (OTHER_BSS_SECTIONS): New.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/emulparams/elf32_tic6x_le.sh13
2 files changed, 17 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index e950814ad7..25452fbbf1 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-08 Bernd Schmidt <bernds@codesourcery.com>
+
+ * emulparams/elf32_tic6x_le.sh (OTHER_BSS_SECTIONS): New.
+
2010-06-08 Nick Clifton <nickc@redhat.com>
* fdl.texi: Replace with v1.3 text.
diff --git a/ld/emulparams/elf32_tic6x_le.sh b/ld/emulparams/elf32_tic6x_le.sh
index b9a5a96313..ee41f4f986 100644
--- a/ld/emulparams/elf32_tic6x_le.sh
+++ b/ld/emulparams/elf32_tic6x_le.sh
@@ -24,3 +24,16 @@ OTHER_READWRITE_SECTIONS=".fardata ${RELOCATING-0} : { *(.fardata${RELOCATING+ .
OTHER_READWRITE_RELOC_SECTIONS="
.rel.fardata ${RELOCATING-0} : { *(.rel.fardata${RELOCATING+ .rel.fardata.*}) }
.rela.fardata ${RELOCATING-0} : { *(.rela.fardata${RELOCATING+ .rela.fardata.*}) }"
+OTHER_BSS_SECTIONS="
+ .heap :
+ {
+ . = ALIGN(4);
+ _HEAP_START = .;
+ . += 0x2000000;
+ _HEAP_MAX = .;
+ }
+ .stack :
+ {
+ . += 0x100000;
+ _STACK_START = .;
+ }"