rel-sections.ld 588 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. /*
  3. * .rel.* are for relocation.
  4. * These are being produced by compiler/linker.
  5. * Specify these here so they are not considered orphan sections.
  6. */
  7. SECTION_PROLOGUE(.rel.plt,,)
  8. {
  9. *(.rel.plt)
  10. PROVIDE_HIDDEN (__rel_iplt_start = .);
  11. *(.rel.iplt)
  12. PROVIDE_HIDDEN (__rel_iplt_end = .);
  13. }
  14. SECTION_PROLOGUE(.rela.plt,,)
  15. {
  16. *(.rela.plt)
  17. PROVIDE_HIDDEN (__rela_iplt_start = .);
  18. *(.rela.iplt)
  19. PROVIDE_HIDDEN (__rela_iplt_end = .);
  20. }
  21. SECTION_PROLOGUE(.rel.dyn,,)
  22. {
  23. *(.rel.*)
  24. }
  25. SECTION_PROLOGUE(.rela.dyn,,)
  26. {
  27. *(.rela.*)
  28. }