aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-12-23 12:27:45 +0000
committerNick Clifton <nickc@redhat.com>2004-12-23 12:27:45 +0000
commitc38f024c3d3d43a315c506a1fcd417785228bee9 (patch)
tree119c0761dc2a29f68af8fbf24d94282d2be27a39 /ld
parentf471f2e78b05776c07264ec9992cfee1df57ad08 (diff)
downloadbinutils-c38f024c3d3d43a315c506a1fcd417785228bee9.zip
binutils-c38f024c3d3d43a315c506a1fcd417785228bee9.tar.gz
binutils-c38f024c3d3d43a315c506a1fcd417785228bee9.tar.bz2
PR 600
* emulparams/shelf.sh (.stack): Increase stack start address to 0x300000.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/emulparams/shelf.sh4
2 files changed, 8 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index b8a5e7d..af13dd6 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2004-12-23 Nick Clifton <nickc@redhat.com>
+
+ PR 600
+ * emulparams/shelf.sh (.stack): Increase stack start address to
+ 0x300000.
+
2004-12-20 Nick Clifton <nickc@redhat.com>
* ldmain.c (main): Issue an error message if -static and -shared
diff --git a/ld/emulparams/shelf.sh b/ld/emulparams/shelf.sh
index ef0de46..6f66bf5 100644
--- a/ld/emulparams/shelf.sh
+++ b/ld/emulparams/shelf.sh
@@ -17,13 +17,13 @@ CTOR_START='___ctors = .;'
CTOR_END='___ctors_end = .;'
DTOR_START='___dtors = .;'
DTOR_END='___dtors_end = .;'
-# This is like setting STACK_ADDR to 0x30000, except that the setting can
+# This is like setting STACK_ADDR to 0x300000, except that the setting can
# be overridden, e.g. --defsym _stack=0x0f00, and that we put an extra
# sentinal value at the bottom.
# N.B. We can't use PROVIDE to set the default value in a symbol because
# the address is needed to place the .stack section, which in turn is needed
# to hold the sentinel value(s).
-test -z "$CREATE_SHLIB" && OTHER_SECTIONS=" .stack ${RELOCATING-0}${RELOCATING+(DEFINED(_stack) ? _stack : 0x30000)} :
+test -z "$CREATE_SHLIB" && OTHER_SECTIONS=" .stack ${RELOCATING-0}${RELOCATING+(DEFINED(_stack) ? _stack : 0x300000)} :
{
${RELOCATING+_stack = .;}
*(.stack)