aboutsummaryrefslogtreecommitdiff
path: root/ld/emulparams
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1998-06-13 00:53:24 +0000
committerDoug Evans <dje@google.com>1998-06-13 00:53:24 +0000
commit695bc2ee12b2bfc0954e6856d37074f147e1c2a0 (patch)
treecfba7c29d874d8e7d5cb3991dd21ec02332d48fd /ld/emulparams
parent030bf387cc76d1fddf9b7a9ab12aea4f3cafb09e (diff)
downloadgdb-695bc2ee12b2bfc0954e6856d37074f147e1c2a0.zip
gdb-695bc2ee12b2bfc0954e6856d37074f147e1c2a0.tar.gz
gdb-695bc2ee12b2bfc0954e6856d37074f147e1c2a0.tar.bz2
* scripttempl/elf.sc (INPUT_FILES): Optional INPUT spec.
* emulparams/m32relf.sh (INPUT_FILES): Define. (OTHER_RELOCATING_SECTIONS): Change top of stack to 8MB.
Diffstat (limited to 'ld/emulparams')
-rw-r--r--ld/emulparams/m32relf.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/ld/emulparams/m32relf.sh b/ld/emulparams/m32relf.sh
index 35b52e5..0ba0289 100644
--- a/ld/emulparams/m32relf.sh
+++ b/ld/emulparams/m32relf.sh
@@ -1,11 +1,19 @@
MACHINE=
SCRIPT_NAME=elf
+TEMPLATE_NAME=elf32
OUTPUT_FORMAT="elf32-m32r"
-TEXT_START_ADDR=0x0
+TEXT_START_ADDR=0x100
ARCH=m32r
+MACHINE=
MAXPAGESIZE=32
EMBEDDED=yes
+# For the default linker script, include libgloss.
+# If the user specifies a different linker script, we want the
+# rest of the files (e.g. crt0.o) included by default, but not libgloss.
+# [Thus I was reluctant to handle this in gcc specs.]
+INPUT_FILES="INPUT(-lgloss)"
+
# Hmmm, there's got to be a better way. This sets the stack to the
-# top of the simulator memory (currently 1M).
-OTHER_RELOCATING_SECTIONS='.stack 0x100000 : { _stack = .; *(.stack) }'
+# top of simulator memory (8MB).
+OTHER_RELOCATING_SECTIONS='PROVIDE (_stack = 0x800000);'