Subversion Repositories Kolibri OS

Rev

Go to most recent revision | 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) *(.rdata)
14
    . = ALIGN(16);
15
    ___RUNTIME_PSEUDO_RELOC_LIST__ = .;
16
    __RUNTIME_PSEUDO_RELOC_LIST__ = .;
17
    *(.rdata_runtime_pseudo_reloc)
18
    ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
19
    __RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
20
    __pei386_runtime_relocator = .;
21
  }
22
23
 
24
  {
25
     PROVIDE ( __data_start__ = .) ;
26
    *(.data)
27
        *(.data2)
28
        *(SORT(.data$*))
29
        *(.jcr)
30
       PROVIDE ( __data_end__ = .) ;
31
        *(.data_cygwin_nocopy)
32
  }
33
34
 
35
  {
36
    *(.bss)
37
    *(COMMON)
38
  }
39
40
 
41
  {
42
    *(.edata)
43
  }
44
45
 
46
  {
47
    *(.debug$S)
48
    *(.debug$T)
49
    *(.debug$F)
50
    *(.drectve)
51
    *(.note.GNU-stack)
52
    *(.comment)
53
    *(.debug_abbrev)
54
    *(.debug_info)
55
    *(.debug_line)
56
    *(.debug_frame)
57
    *(.debug_loc)
58
    *(.debug_pubnames)
59
    *(.debug_aranges)
60
    *(.debug_ranges)
61
  }
62
63
 
64
  {
65
    SORT(*)(.idata$2)
66
    SORT(*)(.idata$3)
67
    /* These zeroes mark the end of the import list. */
68
    LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
69
    SORT(*)(.idata$4)
70
    SORT(*)(.idata$5)
71
    SORT(*)(.idata$6)
72
    SORT(*)(.idata$7)
73
  }
74
75
 
76
  {
77
    *(.reloc)
78
  }
79
80
 
81