Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

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