binutils-gdb/ld/i960.sc-sh

24 lines
306 B
Plaintext
Raw Normal View History

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