Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. ENTRY(start)
  2. SECTIONS
  3. {
  4.   .text 0x0000000: {
  5.     *(.text)
  6.    }
  7. .rdata ALIGN(16) :
  8.     {
  9.         *(.rdata)
  10.         *(SORT(.rdata$*))
  11.         ___RUNTIME_PSEUDO_RELOC_LIST__ = .;
  12.         __RUNTIME_PSEUDO_RELOC_LIST__ = .;
  13.         *(.rdata_runtime_pseudo_reloc)
  14.         ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
  15.         __RUNTIME_PSEUDO_RELOC_LIST_END__ = .;
  16.     }
  17.  
  18.   .data : {
  19.     *(.data)
  20.    }
  21.    
  22.   .bss : {
  23.     *(.bss)
  24.    }
  25.  
  26.  
  27.         end = .;
  28. }
  29.