vxworks1.ld 516 B

123456789101112131415161718192021222324252627282930
  1. SECTIONS
  2. {
  3. . = 0x80000;
  4. .interp : { *(.interp) }
  5. .hash : { *(.hash) }
  6. .dynsym : { *(.dynsym) }
  7. .dynstr : { *(.dynstr) }
  8. . = ALIGN (0x400);
  9. .rela.dyn : { *(.rela.dyn) }
  10. .rela.plt : { *(.rela.plt) }
  11. . = ALIGN (0x400);
  12. .plt : { *(.plt) }
  13. . = ALIGN (0x400);
  14. .text : { *(.text) *(.pad) *(.far) }
  15. . = ALIGN (0x10000);
  16. .dynamic : { *(.dynamic) }
  17. . = ALIGN (0x400);
  18. .got : { *(.got.plt) *(.got) }
  19. . = ALIGN (0x400);
  20. .data : { *(.data) }
  21. . = ALIGN (0x400);
  22. .bss : { *(.bss) }
  23. }