Generating note.GNU-stack section for FreeBSD on x86.

Not enabling for ELF in general as not all platform support it
 (e.g. NetBSD, implictly stack never executable).
This commit is contained in:
David Carlier 2021-03-04 22:12:58 +00:00 коммит произвёл Samuel Williams
Родитель 99c3397860
Коммит 0ead818d81
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -41,6 +41,6 @@ PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer):
# We pop the return address and jump to it
ret
#if defined(__linux__) && defined(__ELF__)
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif

Просмотреть файл

@ -37,6 +37,6 @@ PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer):
# Jump to the address on the stack
ret
#if defined(__linux__) && defined(__ELF__)
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif