mirror of
https://frontier.innolan.net/github/amigaos-binutils.git
synced 2026-09-12 21:51:47 +00:00
27 lines
225 B
Python
27 lines
225 B
Python
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.strings)
|
|
_etext = .;
|
|
*(.data)
|
|
_edata = .;
|
|
*(.bss)
|
|
*(COMMON)
|
|
_end = .;
|
|
|
|
}
|
|
|
|
}
|
|
EOF
|
|
|
|
|
|
|
|
|