Home | History | Annotate | Download | only in ld-mips-elf
      1 SECTIONS
      2 {
      3   . = 0x40000;
      4   .reginfo : { *(.reginfo) }
      5   .dynamic : { *(.dynamic) }
      6   .hash : { *(.hash) }
      7   .dynsym : { *(.dynsym) }
      8   .dynstr : { *(.dynstr) }
      9   .rel.dyn : { *(.rel.dyn) }
     10 
     11   . = 0x50000;
     12   .text : { *(.text) }
     13   .MIPS.stubs : { *(.MIPS.stubs) }
     14 
     15   . = 0x60000;
     16   .data : { *(.data) }
     17   HIDDEN (_gp = ALIGN (16) + 0x7ff0);
     18   .got : { *(.got) }
     19 
     20   /DISCARD/ : { *(.MIPS.abiflags) *(.gnu.attributes) }
     21 }
     22