Bug #18061 » 0001-Add-.note.gnu.property-sections.patch
| coroutine/amd64/Context.S | ||
|---|---|---|
|
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||
| coroutine/arm32/Context.S | ||
|---|---|---|
|
#if defined(__linux__) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||
| coroutine/arm64/Context.S | ||
|---|---|---|
|
#if defined(__linux__) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||
| coroutine/ppc64le/Context.S | ||
|---|---|---|
|
#if defined(__linux__) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||
| coroutine/riscv64/Context.S | ||
|---|---|---|
|
#if defined(__linux__) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||
| coroutine/x86/Context.S | ||
|---|---|---|
|
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__ELF__)
|
||
|
.section .note.GNU-stack,"",%progbits
|
||
|
.section .note.gnu.property,"a"
|
||
|
#endif
|
||