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