mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
a70947c195
* m68kcoff.sc-sh: define _end as well as end, for consistency with aout.sc-sh. * configure.in: accept *-ericsson-ose for any m68k CPU. * ldwrite.c (write_rel): don't always set SEC_HAS_CONTENTS flag for each output section.
42 lines
995 B
Plaintext
42 lines
995 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) :
|
|
{
|
|
${RELOCATING+ __bss_start = .};
|
|
*(.bss)
|
|
*(COMMON)
|
|
${RELOCATING+ end = ALIGN(0x8)};
|
|
${RELOCATING+ _end = ALIGN(0x8)};
|
|
}
|
|
.mstack : { } ${RELOCATING+ > mstack}
|
|
.rstack : { } ${RELOCATING+ > rstack}
|
|
}
|
|
EOF
|