plt-local-lib.ld 277 B

123456789101112131415161718
  1. SECTIONS
  2. {
  3. . = 0;
  4. .hash : { *(.hash) }
  5. .dynsym : { *(.dynsym) }
  6. .dynstr : { *(.dynstr) }
  7. .rela.plt : { *(.rela.plt) }
  8. . = 0x1000;
  9. .plt : { *(.plt) }
  10. . = 0x2000;
  11. .text : { *(.text) }
  12. . = 0x3000;
  13. .dynamic : { *(.dynamic) }
  14. .got : { *(.got.plt) }
  15. }