mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
ab57b17418
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.
40 lines
923 B
Plaintext
40 lines
923 B
Plaintext
# 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
|