Subversion Repositories Kolibri OS

Rev

Rev 4973 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/*OUTPUT_FORMAT("binary")*/
2
ENTRY("start")
3
SECTIONS
4
{
5
 .text 0x000000 :
6
 {
7
  code = . ; _code = . ;
5098 clevermous 8
  *(.A)
4973 right-hear 9
  *(.text)
10
  *(.fixup)
11
  *(.gnu.warning)
12
  *(.gnu.linkonce.t*)
13
  *(.const)
14
  *(.ro*)
15
  *(.gnu.linkonce.r*)
16
  ecode = . ; _ecode = . ;
17
 }
18
 .rdata :
19
 {
20
 }
21
 .data :
22
 {
23
  djgpp_first_ctor = . ;
24
  *(.ctor)
25
  *(.ctors)
26
  djgpp_last_ctor = . ;
27
  djgpp_first_dtor = . ;
28
  *(.dtor)
29
  *(.dtors)
30
  djgpp_last_dtor = . ;
31
  *(.gcc_exc*)
32
  __EH_FRAME_BEGIN__ = . ;
33
  *(.eh_fram*)
34
  __EH_FRAME_END__ = . ;
35
  LONG(0);
36
  *(.gnu.linkonce.d*)
37
  *(.rodata)
38
  *(.rodata.*)
39
  *(.data)
40
  edata = . ; _edata = . ;
41
  bss = . ;
42
 }
43
 .bss :
44
 {
45
  *(.bss)
46
 }
5098 clevermous 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
  }
4973 right-hear 66
}
67