pic-and-nonpic-6.ld 738 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. SECTIONS
  2. {
  3. . = 0x40000 + SIZEOF_HEADERS;
  4. .interp : { *(.interp) }
  5. . = 0x41000;
  6. .reginfo : { *(.reginfo) }
  7. .hash : { *(.hash) }
  8. .dynsym : { *(.dynsym) }
  9. .dynstr : { *(.dynstr) }
  10. . = 0x42000;
  11. .dynamic : { *(.dynamic) }
  12. . = 0x43000;
  13. .rel.dyn : { *(.rel.dyn) }
  14. .rel.plt : { *(.rel.plt) }
  15. .plt : { *(.plt) }
  16. . = 0x44000;
  17. .text : { *(.text) }
  18. .MIPS.stubs : { *(.MIPS.stubs) }
  19. .MIPS.options : { *(.MIPS.options) }
  20. . = 0x80000;
  21. .rld_map : { *(.rld_map) }
  22. . = 0x81000;
  23. .got.plt : { *(.got.plt) }
  24. . = 0xa0000;
  25. HIDDEN (_gp = . + 0x7ff0);
  26. .got : { *(.got) }
  27. . = 0xa1000;
  28. .data : { *(.data) }
  29. . = 0xa2000;
  30. .bss : { *(.dynbss) }
  31. /DISCARD/ : { *(.MIPS.abiflags) *(.gnu.attributes) }
  32. }