ctors.S 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Try to define the minimal empty init/ctor/dtor/fini_arrays so building with
  3. * older or out-of-tree linker scripts will still work.
  4. */
  5. /*
  6. * Note that these aren't the using the GNU "CONSTRUCTOR" output section
  7. * command, so they don't start with a size. Because of p2align and the
  8. * end/END definitions, and the fact that they're mergeable, they can also
  9. * have NULLs which aren't guaranteed to be at the end.
  10. */
  11. .section .init_array,"aw",%init_array
  12. .p2align 4, 0
  13. .globl __init_array_start
  14. __init_array_start:
  15. .globl __init_array_end
  16. __init_array_end:
  17. .section .ctors,"aw",%progbits
  18. .p2align 4, 0
  19. .globl __CTOR_LIST__
  20. __CTOR_LIST__:
  21. .globl __CTOR_END__
  22. __CTOR_END__:
  23. .section .dtors,"aw",%progbits
  24. .p2align 4, 0
  25. .globl __DTOR_LIST__
  26. __DTOR_LIST__:
  27. .globl __DTOR_END__
  28. __DTOR_END__:
  29. .section .fini_array,"aw",%fini_array
  30. .p2align 4, 0
  31. .globl __fini_array_start
  32. __fini_array_start:
  33. .globl __fini_array_end
  34. __fini_array_end:
  35. #if defined(__ELF__) && defined(__linux__)
  36. .section .note.GNU-stack,"",%progbits
  37. #endif