Subversion Repositories Kolibri OS

Rev

Rev 851 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
849 serge 1
 
2
3
 
4
5
 
6
{
7
8
 
9
  . = ALIGN(32);
10
11
 
12
  {
13
     *(.flat)
14
  }
15
  __edata = .;
16
17
 
18
  {
19
    *(.bss) *(COMMON)
20
  }
21
22
 
23
  {
24
    *(.debug$S)
25
    *(.debug$T)
26
    *(.debug$F)
27
    *(.drectve)
28
    *(.reloc)
29
    *(.edata)
30
  }
31
}
32