]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
More correct m68k LynxOS support
authorStan Shebs <shebs@codesourcery.com>
Fri, 12 Nov 1993 00:37:00 +0000 (00:37 +0000)
committerStan Shebs <shebs@codesourcery.com>
Fri, 12 Nov 1993 00:37:00 +0000 (00:37 +0000)
ld/emulparams/m68klynx.sh
ld/emulparams/sparclynx.sh
ld/scripttempl/.Sanitize
ld/scripttempl/m68klynx.sc [new file with mode: 0644]

index 254aa50aee2363cf9afbd665080582cd4d709ad7..a28017746bdfcc33af080b1d24b658569abc5a0d 100644 (file)
@@ -1,5 +1,8 @@
-SCRIPT_NAME=m68kcoff
-OUTPUT_FORMAT="coff-m68k"
-TEXT_START_ADDR=0x1000000
-PAGE_SIZE=0x1000000
+SCRIPT_NAME=m68klynx
+OUTPUT_FORMAT="coff-m68k-lynx"
+# This is what LynxOS /lib/init1.o wants.
+ENTRY=__main
+# following are dubious
+TEXT_START_ADDR=0
+PAGE_SIZE=0x1000
 ARCH=m68k
index f0b3399787eac4127433b1b40ca207c58f4f29b3..dd674135289b12a627a394508356195f55c34480 100644 (file)
@@ -1,6 +1,6 @@
 SCRIPT_NAME=sparccoff
 OUTPUT_FORMAT="coff-sparc-lynx"
-# This is what /lib/init1.o seems to want.
+# This is what LynxOS /lib/init1.o wants.
 ENTRY=_main
 # following are dubious
 PAGE_SIZE=0x1000
index ca520bfa5d876ddfd932f0d8276ba214ae1db3c9..a331e33eef811d0704fd7352ae7375af974ca9cf 100644 (file)
@@ -37,6 +37,7 @@ hppaosf.sc
 i386coff.sc
 i960.sc
 m68kcoff.sc
+m68klynx.sc
 m88kbcs.sc
 mips.sc
 mipsbsd.sc
diff --git a/ld/scripttempl/m68klynx.sc b/ld/scripttempl/m68klynx.sc
new file mode 100644 (file)
index 0000000..3f601c7
--- /dev/null
@@ -0,0 +1,35 @@
+test -z "$ENTRY" && ENTRY=_start
+cat <<EOF
+OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+${LIB_SEARCH_DIRS}
+
+ENTRY(${ENTRY})
+
+SECTIONS
+{
+  .text ${RELOCATING+ SIZEOF_HEADERS} : {
+    *(.init)
+    *(.text)
+    *(.fini)
+    ${RELOCATING+ etext  =  .};
+  }
+  .data ${RELOCATING+ 0x400000 + (. & 0xffc00fff)} : {
+    *(.data .data2)
+    ${RELOCATING+ edata  =  .};
+  }
+  .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
+  {                                    
+    *(.bss)
+    *(COMMON)
+    ${RELOCATING+ end = .};
+  }
+  .stab  . (NOLOAD) : 
+  {
+    [ .stab ]
+  }
+  .stabstr  . (NOLOAD) :
+  {
+    [ .stabstr ]
+  }
+}
+EOF