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