binutils-gdb/ld/sa29200.sc-sh
Steve Chamberlain 0fdf9f815b More 29200 stuff
1992-05-02 02:09:20 +00:00

25 lines
333 B
Plaintext
Executable File

cat <<EOF
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
ENTRY(start)
SECTIONS {
.text ${RELOCATING+${TEXT_START_ADDR}} :
{
*(.text);
${RELOCATING+_etext = .};
}
data . :
{
*(.data);
${RELOCATING+_edata = .};
${CONSTRUCTING+CONSTRUCTORS}
}
.bss . :
{
*(COMMON)
*(.bss)
${RELOCATING+_end = .};
}
}
EOF