mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-04 15:54:25 +08:00
8a432746ae
De Muyter). * configure.in (m68k-motorola-sysv*) New target. * config/delta68.mt: New file. * emulparams/delta68.sh: New file. * scripttempl/delta68.sc: New file. * Makefile.in (ALL_EMULATIONS): Added em_delta68.o. (em_delta68.c): New target.
28 lines
443 B
Scala
28 lines
443 B
Scala
# Linker script for Motorola Delta sysV68 R3V7.1
|
|
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
${LIB_SEARCH_DIRS}
|
|
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
.text ${TEXT_START_ADDR} : {
|
|
*(.init)
|
|
*(.text)
|
|
*(.fini)
|
|
}
|
|
${RELOCATING+ etext = .;}
|
|
.data ${RELOCATING+ 0x400000 + (. & 0xfff)} : {
|
|
*(.data .data2)
|
|
}
|
|
${RELOCATING+ edata = .;}
|
|
.bss . :
|
|
{
|
|
*(.bss)
|
|
*(COMMON)
|
|
}
|
|
${RELOCATING+ end = .;}
|
|
}
|