Subversion Repositories Kolibri OS

Rev

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

Rev 4973 Rev 5098
Line 3... Line 3...
3
SECTIONS
3
SECTIONS
4
{
4
{
5
 .text 0x000000 : 
5
 .text 0x000000 : 
6
 {
6
 {
7
  code = . ; _code = . ;
7
  code = . ; _code = . ;
-
 
8
  *(.A)
8
  *(.text)
9
  *(.text)
9
  *(.fixup)
10
  *(.fixup)
10
  *(.gnu.warning)
11
  *(.gnu.warning)
11
  *(.gnu.linkonce.t*)
12
  *(.gnu.linkonce.t*)
12
  *(.const)
13
  *(.const)
Line 41... Line 42...
41
 }
42
 }
42
 .bss :
43
 .bss :
43
 {
44
 {
44
  *(.bss)
45
  *(.bss)
45
 }
46
 }
46
 end = . ; _end = . ;
47
 end = . ; _end = . ; ___memsize = . ;
-
 
48
  /DISCARD/ :
-
 
49
  {
-
 
50
    *(.debug$S)
-
 
51
    *(.debug$T)
-
 
52
    *(.debug$F)
-
 
53
    *(.drectve)
-
 
54
    *(.note.GNU-stack)
-
 
55
    *(.eh_frame)
-
 
56
    *(.comment)
-
 
57
    *(.debug_abbrev)
-
 
58
    *(.debug_info)
-
 
59
    *(.debug_line)
-
 
60
    *(.debug_frame)
-
 
61
    *(.debug_loc)
-
 
62
    *(.debug_pubnames)
-
 
63
    *(.debug_aranges)
-
 
64
    *(.debug_ranges)
-
 
65
  }
47
}
66
}
Line 48... Line 67...
48
67