Subversion Repositories Kolibri OS

Rev

Rev 851 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. ENTRY(__start)
  3.  
  4. OUTPUT_FORMAT(pei-i386)
  5.  
  6. SECTIONS
  7. {
  8.  
  9.   . = SIZEOF_HEADERS;
  10.   . = ALIGN(32);
  11.  
  12.   .flat . + __image_base__ :
  13.   {
  14.      *(.flat)
  15.   }
  16.   __edata = .;
  17.  
  18.   .bss  ALIGN(4096) :
  19.   {
  20.     *(.bss) *(COMMON)
  21.   }
  22.  
  23.   /DISCARD/ :
  24.   {
  25.     *(.debug$S)
  26.     *(.debug$T)
  27.     *(.debug$F)
  28.     *(.drectve)
  29.     *(.reloc)
  30.     *(.edata)
  31.   }
  32. }
  33.  
  34.  
  35.