Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | 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 = . ;
8
  *(.text)
9
  *(.fixup)
10
  *(.gnu.warning)
11
  *(.gnu.linkonce.t*)
12
  *(.const)
13
  *(.ro*)
14
  *(.gnu.linkonce.r*)
15
  ecode = . ; _ecode = . ;
16
 }
17
 .rdata :
18
 {
19
 }
20
 .data :
21
 {
22
  djgpp_first_ctor = . ;
23
  *(.ctor)
24
  *(.ctors)
25
  djgpp_last_ctor = . ;
26
  djgpp_first_dtor = . ;
27
  *(.dtor)
28
  *(.dtors)
29
  djgpp_last_dtor = . ;
30
  *(.gcc_exc*)
31
  __EH_FRAME_BEGIN__ = . ;
32
  *(.eh_fram*)
33
  __EH_FRAME_END__ = . ;
34
  LONG(0);
35
  *(.gnu.linkonce.d*)
36
  *(.rodata)
37
  *(.rodata.*)
38
  *(.data)
39
  edata = . ; _edata = . ;
40
  bss = . ;
41
 }
42
 .bss :
43
 {
44
  *(.bss)
45
 }
46
 end = . ; _end = . ;
47
}
48