abitag.inc 817 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2002,2018 by Florian Klaempfl
  4. members of the Free Pascal development team.
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY;without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. procedure ABITag;nostackframe;assembler;
  12. asm
  13. .section ".note.ABI-tag", "a"
  14. .align 4
  15. .long 4
  16. .long 16
  17. .long 1
  18. .asciz "GNU"
  19. .align 4
  20. .long 0
  21. // oldest supported kernel version, just a guess for now (FK)
  22. .long 2,6,0
  23. .align 4
  24. .section ".note.GNU-stack","",@progbits
  25. .text
  26. end;