Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1907 → Rev 1908

/programs/develop/libraries/newlib/pe_app.lds
10,7 → 10,6
 
.text __image_base__ + . :
{
 
*(.init)
*(.text)
*(SORT(.text$*))
26,10 → 25,7
*(.gcc_exc)
PROVIDE (etext = .);
*(.gcc_except_table)
}
 
.rdata ALIGN(__section_alignment__):
{
*(.rdata)
*(SORT(.rdata$*))
___RUNTIME_PSEUDO_RELOC_LIST__ = .;
38,6 → 34,25
___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__ = . ;
57,25 → 72,7
___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)