aboutsummaryrefslogtreecommitdiff
path: root/ld/i386coff.sc-sh
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-09-11 20:43:33 +0000
committerSteve Chamberlain <sac@cygnus>1992-09-11 20:43:33 +0000
commite92bddcd1babd4fc5d4551602eab36c04f15e7c1 (patch)
treea7c7fec06e45c33894777cbf2d4c3777f11fca59 /ld/i386coff.sc-sh
parent1d7c7537dc5028a0b1393ca2e6b2c2e8e26e971f (diff)
downloadgdb-e92bddcd1babd4fc5d4551602eab36c04f15e7c1.zip
gdb-e92bddcd1babd4fc5d4551602eab36c04f15e7c1.tar.gz
gdb-e92bddcd1babd4fc5d4551602eab36c04f15e7c1.tar.bz2
Sanitize slip
Diffstat (limited to 'ld/i386coff.sc-sh')
-rw-r--r--ld/i386coff.sc-sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/ld/i386coff.sc-sh b/ld/i386coff.sc-sh
new file mode 100644
index 0000000..485f3bb
--- /dev/null
+++ b/ld/i386coff.sc-sh
@@ -0,0 +1,39 @@
+# This is totally made up, from the a29k stuff. If you know better,
+# tell us about it.
+cat <<EOF
+OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+${LIB_SEARCH_DIRS}
+
+MEMORY {
+ text : ORIGIN = 0x1000000, LENGTH = 0x1000000
+ talias : ORIGIN = 0x2000000, LENGTH = 0x1000000
+ data : ORIGIN = 0x3000000, LENGTH = 0x1000000
+ mstack : ORIGIN = 0x4000000, LENGTH = 0x1000000
+ rstack : ORIGIN = 0x5000000, LENGTH = 0x1000000
+}
+SECTIONS
+{
+ .text : {
+ *(.text)
+ ${RELOCATING+ _etext = .};
+ *(.lit)
+ *(.shdata)
+ } ${RELOCATING+ > text}
+ .shbss SIZEOF(.text) + ADDR(.text) : {
+ *(.shbss)
+ }
+ .talias : { } ${RELOCATING+ > talias}
+ .data : {
+ *(.data)
+ ${RELOCATING+ _edata = .};
+ } ${RELOCATING+ > data}
+ .bss SIZEOF(.data) + ADDR(.data) :
+ {
+ *(.bss)
+ *(COMMON)
+ ${RELOCATING+ _end = ALIGN(0x8)};
+ }
+ .mstack : { } ${RELOCATING+ > mstack}
+ .rstack : { } ${RELOCATING+ > rstack}
+}
+EOF