Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1908 → Rev 1906

/programs/develop/libraries/newlib/pe_app.lds
10,6 → 10,7
 
.text __image_base__ + . :
{
 
*(.init)
*(.text)
*(SORT(.text$*))
25,7 → 26,10
*(.gcc_exc)
PROVIDE (etext = .);
*(.gcc_except_table)
}
 
.rdata ALIGN(__section_alignment__):
{
*(.rdata)
*(SORT(.rdata$*))
___RUNTIME_PSEUDO_RELOC_LIST__ = .;
34,25 → 38,6
___RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
__RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
}
.data ALIGN(__section_alignment__):
{
PROVIDE ( __data_start__ = .) ;
*(.data)
*(.data2)
*(SORT(.data$*))
*(.jcr)
__CRT_MT = .;
LONG(0);
PROVIDE ( __data_end__ = .) ;
*(.data_cygwin_nocopy)
}
 
.eh_frame ALIGN(__section_alignment__):
{
*(.eh_frame)
___iend = . ;
}
 
.CRT ALIGN(__section_alignment__):
{
___crt_xc_start__ = . ;
72,7 → 57,25
___crt_xt_end__ = . ;
}
 
.data ALIGN(__section_alignment__):
{
PROVIDE ( __data_start__ = .) ;
*(.data)
*(.data2)
*(SORT(.data$*))
*(.jcr)
__CRT_MT = .;
LONG(0);
PROVIDE ( __data_end__ = .) ;
*(.data_cygwin_nocopy)
}
 
.eh_frame ALIGN(__section_alignment__):
{
*(.eh_frame)
___iend = . ;
}
 
.bss ALIGN(__section_alignment__):
{
*(.bss)