mirror of
https://frontier.innolan.net/github/amigaos-binutils.git
synced 2026-09-13 21:00:52 +00:00
unused values. * ld/emulparams/amiga_bss.sh (PAGE_SIZE, NONPAGED_TEXT_START_ADDR): Likewise. * ld/scripttempl/amiga.sc (___machtype): Move out of .text section and drop ABSOLUTE. (___text_size): Move out of .text section and replace ABSOLUTE with SIZEOF to compute its value. (___data_size): Move out of .data section and replace ABSOLUTE with SIZEOF to compute its value. (___bss_size): Move out of .bss section and replace ABSOLUTE with SIZEOF to compute its value. * ld/scripttempl/amiga_bss.sc (___machtype): Move out of .text section and drop ABSOLUTE. (___text_size): Move out of .text section and replace ABSOLUTE with SIZEOF to compute its value. (___data_size): Move out of .data section and replace ABSOLUTE with SIZEOF on .data and .bss to compute its value. (___bss_size): Move out of .data section and drop useless ABSOLUTE. (__edata): Move to its expected place at the end of .data section. (__bss_start): Move to its expected place at the start of .bss section.
50 lines
998 B
Python
50 lines
998 B
Python
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
|
${STACKZERO+${RELOCATING+${STACKZERO}}}
|
|
${SHLIB_PATH+${RELOCATING+${SHLIB_PATH}}}
|
|
|
|
SECTIONS
|
|
{
|
|
${RELOCATING+PROVIDE(___machtype = 0x0);}
|
|
${RELOCATING+. = ${TEXT_START_ADDR};}
|
|
.text :
|
|
{
|
|
${RELOCATING+__stext = .;}
|
|
*(.text)
|
|
${RELOCATING+___datadata_relocs = .;}
|
|
${RELOCATING+__etext = .;}
|
|
${PAD_TEXT+${RELOCATING+. = ${DATA_ALIGNMENT};}}
|
|
}
|
|
${RELOCATING+___text_size = SIZEOF(.text);}
|
|
${RELOCATING+. = ${DATA_ALIGNMENT};}
|
|
.data :
|
|
{
|
|
${RELOCATING+__sdata = .;}
|
|
${CONSTRUCTING+CONSTRUCTORS}
|
|
*(.data)
|
|
${RELOCATING+___a4_init = 0x7ffe;}
|
|
${RELOCATING+__edata = .;}
|
|
}
|
|
${RELOCATING+___data_size = SIZEOF(.data);}
|
|
.bss :
|
|
{
|
|
${RELOCATING+__bss_start = .;}
|
|
*(.bss)
|
|
*(COMMON)
|
|
${RELOCATING+__end = .;}
|
|
}
|
|
${RELOCATING+___bss_size = SIZEOF(.bss);}
|
|
.data_chip :
|
|
{
|
|
*(.data_chip)
|
|
}
|
|
.bss_chip :
|
|
{
|
|
*(.bss_chip)
|
|
}
|
|
}
|
|
EOF
|