diff options
author | Ian Lance Taylor <ian@airs.com> | 1992-09-09 18:59:11 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1992-09-09 18:59:11 +0000 |
commit | ab57b17418b4b7fa56069fa320e1455ff5dea081 (patch) | |
tree | 64f54b297074ac4ff48376361b3075c6672b6cdc /ld/m68kcoff.sc-sh | |
parent | 66beed38d21722bf0c8f20705dc55dd0acf1b4bd (diff) | |
download | gdb-ab57b17418b4b7fa56069fa320e1455ff5dea081.zip gdb-ab57b17418b4b7fa56069fa320e1455ff5dea081.tar.gz gdb-ab57b17418b4b7fa56069fa320e1455ff5dea081.tar.bz2 |
Brought in from p3. If anybody knows good numbers for m68k COFF,
please let me know, or plug them in yourself.
Wed Sep 9 11:52:58 1992 Ian Lance Taylor (ian@cygnus.com)
* Makefile.in, m68kcoff.sh, m68kcoff.sc-sh, config/m68k-coff.mt:
added m68k-coff emulation mode, stolen from a29k emulation.
Almost certainly wrong, but perhaps better than sun3.
Also fixed an error message in configure.in so that it started with
'***' like the other error messages do.
Diffstat (limited to 'ld/m68kcoff.sc-sh')
-rw-r--r-- | ld/m68kcoff.sc-sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ld/m68kcoff.sc-sh b/ld/m68kcoff.sc-sh new file mode 100644 index 0000000..485f3bb --- /dev/null +++ b/ld/m68kcoff.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 |