reloc-estimate-1.ld 473 B

1234567891011121314151617181920212223242526272829
  1. SECTIONS
  2. {
  3. . = 0;
  4. .reginfo : { *(.reginfo) }
  5. . = ALIGN (0x400);
  6. .dynamic : { *(.dynamic) }
  7. .dynsym : { *(.dynsym) }
  8. .dynstr : { *(.dynstr) }
  9. . = ALIGN (0x400);
  10. .rel.dyn : { *(.rel.dyn) }
  11. .foo : { *(.foo) }
  12. .text : { *(.text) }
  13. . = ALIGN (0x400);
  14. .MIPS.stubs : { *(.MIPS.stubs) }
  15. . = ALIGN (0x10000);
  16. .data : { *(.data) }
  17. . = ALIGN (0x400);
  18. HIDDEN (_gp = . + 0x7ff0);
  19. .got : { *(.got) }
  20. }
  21. VERSION {
  22. V2 { global: foo; local: *; };
  23. }