Subversion Repositories Kolibri OS

Rev

Rev 1125 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1125 Rev 1179
Line 18... Line 18...
18
    *(.data)
18
    *(.data)
19
  }
19
  }
20
 
20
 
21
  .reloc ALIGN(__section_alignment__) :
21
  .bss ALIGN(__section_alignment__):
Line 22... Line 22...
22
  {
22
  {
23
    *(.reloc)
23
    *(.bss)
-
 
24
    *(COMMON)
-
 
25
  }
-
 
26
 
-
 
27
  /DISCARD/ :
-
 
28
  {
-
 
29
    *(.debug$S)
-
 
30
    *(.debug$T)
-
 
31
    *(.debug$F)
-
 
32
    *(.drectve)
24
  }
33
    *(.edata)
-
 
34
  }
25
 
35
 
Line 26... Line 36...
26
  .idata ALIGN(__section_alignment__):
36
  .idata ALIGN(__section_alignment__):
27
  {
37
  {
28
    SORT(*)(.idata$2)
38
    SORT(*)(.idata$2)
Line 35... Line 45...
35
    SORT(*)(.idata$7)
45
    SORT(*)(.idata$7)
36
  }
46
  }
37
 
47
 
38
  .bss ALIGN(__section_alignment__):
48
  .reloc ALIGN(__section_alignment__) :
Line 39... Line 49...
39
  {
49
  {
40
    *(.bss)
50
    *(.reloc)
41
    *(COMMON)
51
  }
42
  }
-
 
43
 
52
 
Line 44... Line -...
44
  /DISCARD/ :
-
 
45
  {
-
 
46
    *(.debug$S)
-
 
47
    *(.debug$T)
-
 
48
    *(.debug$F)
-
 
49
    *(.drectve)
-
 
50
    *(.edata)
-
 
51
  }
-
 
52
}
53
}