{
${RELOCATING+ *(.init);}
*(.text)
+ ${CONSTRUCTING+ ___CTOR_LIST__ = .; LONG (-1); *(.ctor); LONG (0); }
+ ${CONSTRUCTING+ ___DTOR_LIST__ = .; LONG (-1); *(.dtor); LONG (0); }
${RELOCATING+ *(.fini);}
${RELOCATING+ etext = .};
}
cat <<EOF
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-OUTPUT_ARCH(z8002)
+OUTPUT_ARCH("${OUTPUT_ARCH}")
ENTRY(_start)
SECTIONS
{
-.text : {
+.text ${BIG+ ${RELOCATING+ 0x0000000}} : {
*(.text)
*(.strings)
*(.rdata)
}
-.ctors :
+.ctors ${BIG+ ${RELOCATING+ 0x2000000}} :
{
${RELOCATING+ ___ctors = . ; }
*(.ctors);
${RELOCATING+ ___dtors_end = . ; }
}
-.data : {
+.data ${BIG+ ${RELOCATING+ 0x3000000}} : {
*(.data)
}
-.bss :
+.bss ${BIG+ ${RELOCATING+ 0x4000000}} :
{
${RELOCATING+ __start_bss = . ; }
*(.bss);
${RELOCATING+ __end_bss = . ; }
}
-.heap : {
+.heap ${BIG+ ${RELOCATING+ 0x5000000}} : {
${RELOCATING+ __start_heap = . ; }
${RELOCATING+ . = . + 20k ; }
${RELOCATING+ __end_heap = . ; }