cdf91fe451
Add tms320c30 support: * configure.tgt (tic30-*-*aout*, tic30-*-*coff*): New targets. * emulparams/tic30aout.sh: New file. * emulparams/tic30coff.sh: New file. * scripttempl/tic30aout.sc: New file. * scripttempl/tic30coff.sc: New file. * Makefile.am (ALL_EMULATIONS): Add etic30aout.o and etic30coff.o. (etic30aout.c, etic30coff.c): New targets. * Makefile.in: Rebuild.
34 lines
653 B
Python
34 lines
653 B
Python
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
${STACKZERO+${RELOCATING+${STACKZERO}}}
|
|
${RELOCATING+PROVIDE (__stack = 0);}
|
|
SECTIONS
|
|
{
|
|
${RELOCATING+. = ${TEXT_START_ADDR};}
|
|
.text :
|
|
{
|
|
CREATE_OBJECT_SYMBOLS
|
|
*(.text)
|
|
${RELOCATING+_etext = .;}
|
|
${RELOCATING+__etext = .;}
|
|
${PAD_TEXT+${RELOCATING+. = ${DATA_ALIGNMENT};}}
|
|
}
|
|
${RELOCATING+. = ${DATA_ALIGNMENT};}
|
|
.data :
|
|
{
|
|
*(.data)
|
|
${RELOCATING+_edata = .;}
|
|
${RELOCATING+__edata = .;}
|
|
}
|
|
.bss :
|
|
{
|
|
${RELOCATING+ __bss_start = .};
|
|
*(.bss)
|
|
*(COMMON)
|
|
${RELOCATING+_end = ALIGN(4) };
|
|
${RELOCATING+__end = ALIGN(4) };
|
|
}
|
|
}
|
|
EOF
|