Subversion Repositories Kolibri OS

Rev

Rev 3799 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1906 serge 1
 
2
3
 
3805 Serge 4
1906 serge 5
 
6
{
7
8
 
9
  . = ALIGN(__section_alignment__);
10
11
 
12
  {
13
    *(.text)
3799 Serge 14
    *(SORT(.text$*))
15
    *(.text.*)
16
     *(.gnu.linkonce.t.*)
3805 Serge 17
        *(.glue_7t)
3799 Serge 18
        *(.glue_7)
19
        ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
20
                        LONG (-1);*(.ctors); *(.ctor); *(SORT(.ctors.*));  LONG (0);
21
        ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
22
                        LONG (-1); *(.dtors); *(.dtor); *(SORT(.dtors.*));  LONG (0);
23
        *(.fini)
24
    *(.rdata)
25
    *(SORT(.rdata$*))
26
    __rt_psrelocs_start = .;
3805 Serge 27
    *(.rdata_runtime_pseudo_reloc)
1906 serge 28
    __rt_psrelocs_end = .;
3805 Serge 29
    __rt_psrelocs_size = __rt_psrelocs_end - __rt_psrelocs_start;
30
    ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
1906 serge 31
    __RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
32
    ___RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size;
3805 Serge 33
    __RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size;
34
  }
1906 serge 35
36
 
37
  {
38
     PROVIDE ( __data_start__ = .) ;
39
    *(.data)
40
        *(.data2)
41
        *(SORT(.data$*))
42
        *(.jcr)
43
     __CRT_MT = .;
3799 Serge 44
     LONG(0);
45
       PROVIDE ( __data_end__ = .) ;
1906 serge 46
        *(.data_cygwin_nocopy)
47
  }
48
49
 
50
  {
51
    __bss_start__ = . ;
3805 Serge 52
    *(.bss)
1906 serge 53
    *(COMMON)
54
    __bss_end__ = . ;
3805 Serge 55
  }
1906 serge 56
57
 
58
  {
59
    *(.edata)
60
  }
61
62
 
63
  {
64
    *(.debug$S)
65
    *(.debug$T)
66
    *(.debug$F)
67
    *(.drectve)
68
    *(.note.GNU-stack)
69
    *(.eh_frame)
3799 Serge 70
    *(.comment)
1906 serge 71
    *(.debug_abbrev)
72
    *(.debug_info)
73
    *(.debug_line)
74
    *(.debug_frame)
75
    *(.debug_loc)
76
    *(.debug_pubnames)
77
    *(.debug_aranges)
78
    *(.debug_ranges)
79
  }
80
81
 
82
  {
83
    *(.reloc)
84
  }
85
86
 
87