mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
6c86b9ff98
* config/i386-go32.mt: New file * emulparams/i386go32.sh: New file * scripttempl/i386go32.sc: New file
46 lines
845 B
Scala
46 lines
845 B
Scala
# Linker script for i386 go32 COFF.
|
|
# stolen from ian
|
|
test -z "$ENTRY" && ENTRY=_start
|
|
# These are substituted in as variables in order to get '}' in a shell
|
|
# conditional expansion.
|
|
INIT='.init : { *(.init) }'
|
|
FINI='.fini : { *(.fini) }'
|
|
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
${LIB_SEARCH_DIRS}
|
|
|
|
ENTRY(${ENTRY})
|
|
|
|
SECTIONS
|
|
{
|
|
.text ${RELOCATING+ 0x10a8} : {
|
|
${RELOCATING+ *(.init)}
|
|
*(.text)
|
|
${RELOCATING+ *(.fini)}
|
|
${RELOCATING+ etext = .};
|
|
}
|
|
.data ALIGN (0x1000) : {
|
|
*(.data .data2)
|
|
*(.ctor)
|
|
*(.dtor)
|
|
${RELOCATING+ _edata = .};
|
|
}
|
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
|
{
|
|
*(.bss)
|
|
*(COMMON)
|
|
${RELOCATING+ end = .};
|
|
}
|
|
${RELOCATING- ${INIT}}
|
|
${RELOCATING- ${FINI}}
|
|
.stab . (NOLOAD) :
|
|
{
|
|
[ .stab ]
|
|
}
|
|
.stabstr . (NOLOAD) :
|
|
{
|
|
[ .stabstr ]
|
|
}
|
|
}
|
|
EOF
|