- Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so that

ctypes isn't considered as requiring executable stacks.
This commit is contained in:
Martin v. Löwis 2006-10-22 10:55:25 +00:00
parent e67b3497c9
commit 63a9b8b067
2 changed files with 7 additions and 0 deletions

View File

@ -52,6 +52,9 @@ Core and builtins
Extension Modules Extension Modules
----------------- -----------------
- Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so that
ctypes isn't considered as requiring executable stacks.
- Bug #1567666: Emulate GetFileAttributesExA for Win95. - Bug #1567666: Emulate GetFileAttributesExA for Win95.
- Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode - Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode

View File

@ -376,3 +376,7 @@ ffi_closure_raw_SYSV:
#endif #endif
#endif /* ifndef __x86_64__ */ #endif /* ifndef __x86_64__ */
#ifdef __ELF__
.section .note.GNU-stack,"",%progbits
#endif