.rela.plt ${RELOCATING-0} : { *(.rela.plt) }
/* Internal text space. */
- .text ${RELOCATING-0} :
+ .text ${RELOCATING-0} : ${RELOCATING+ALIGN(2)}
{
- ${RELOCATING+. = ALIGN(2);
+ ${RELOCATING+
*(SORT_NONE(.init))
*(SORT_NONE(.init0)) /* Start here after reset. */
*(SORT_NONE(.init1))
_etext = .;}
} ${RELOCATING+ > text}
- .rodata ${RELOCATING-0} :
+ .rodata ${RELOCATING-0} : ${RELOCATING+ALIGN(2)}
{
- ${RELOCATING+. = ALIGN(2);
+ ${RELOCATING+
*(.lower.rodata.* .lower.rodata)
. = ALIGN(2);
${RELOCATING+ _vectors_end = . ; }
} ${RELOCATING+ > vectors}
- .data ${RELOCATING-0} :
+ .data ${RELOCATING-0} : ${RELOCATING+ALIGN(2)}
{
- ${RELOCATING+ PROVIDE (__data_start = .) ; }
- ${RELOCATING+ PROVIDE (__datastart = .) ; }
- ${RELOCATING+. = ALIGN(2);
+ ${RELOCATING+
+ PROVIDE (__data_start = .) ;
+ PROVIDE (__datastart = .) ;
KEEP (*(.jcr))
*(.data.rel.ro.local) *(.data.rel.ro*)
${RELOCATING+__romdatastart = LOADADDR(.data);
__romdatacopysize = SIZEOF(.data);}
- .bss ${RELOCATING-0}${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
+ .bss ${RELOCATING-0}${RELOCATING+ALIGN(SIZEOF(.data) + ADDR(.data), 2)} :
{
- ${RELOCATING+. = ALIGN(2);}
${RELOCATING+ PROVIDE (__bss_start = .); }
${RELOCATING+ PROVIDE (__bssstart = .);
*(.lower.bss.* .lower.bss)
/* This section contains data that is not initialized during load,
or during the application's initialization sequence. */
- .noinit ${RELOCATING-0}${RELOCATING+SIZEOF(.bss) + ADDR(.bss)} :
+ .noinit ${RELOCATING-0}${RELOCATING+ALIGN(SIZEOF(.bss) + ADDR(.bss), 2)} :
{
- ${RELOCATING+. = ALIGN(2);}
${RELOCATING+ PROVIDE (__noinit_start = .) ; }
*(.noinit${RELOCATING+ .noinit.* .gnu.linkonce.n.*})
${RELOCATING+. = ALIGN(2);}
/* This section contains data that is initialized during load,
but not during the application's initialization sequence. */
- .persistent ${RELOCATING-0}${RELOCATING+SIZEOF(.noinit) + ADDR(.noinit)} :
+ .persistent ${RELOCATING-0}${RELOCATING+ALIGN(SIZEOF(.noinit) + ADDR(.noinit), 2)} :
{
- ${RELOCATING+. = ALIGN(2);}
${RELOCATING+ PROVIDE (__persistent_start = .) ; }
*(.persistent${RELOCATING+ .persistent.* .gnu.linkonce.p.*})
${RELOCATING+. = ALIGN(2);}