old-cross-binutils/ld/i960.sc-sh
1992-03-02 22:22:59 +00:00

23 lines
306 B
Text
Executable file

cat <<EOF
SECTIONS
{
.text :
{
${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
*(.text)
${RELOCATING+ _etext = .};
}
.data :
{
*(.data)
${RELOCATING+ _edata = .};
}
.bss :
{
${RELOCATING+ _bss_start = .};
*(.bss)
*(COMMON)
${RELOCATING+ _end = .};
}
}
EOF