From ba1fbb688edf7db0edf3ea9d24a95d5a5ef2260c Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 13 Jun 2017 01:23:54 +0200 Subject: Linux: fix executable stack in resulting binary which was caused by crypto assembly files missing the GNU-stack note. --- src/Crypto/Aes_x64.asm | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/Crypto/Aes_x64.asm') diff --git a/src/Crypto/Aes_x64.asm b/src/Crypto/Aes_x64.asm index f74d0328..65965af1 100644 --- a/src/Crypto/Aes_x64.asm +++ b/src/Crypto/Aes_x64.asm @@ -905,3 +905,14 @@ end_prologue %endif %endif + +%ifidn __OUTPUT_FORMAT__,elf +section .note.GNU-stack noalloc noexec nowrite progbits +%endif +%ifidn __OUTPUT_FORMAT__,elf32 +section .note.GNU-stack noalloc noexec nowrite progbits +%endif +%ifidn __OUTPUT_FORMAT__,elf64 +section .note.GNU-stack noalloc noexec nowrite progbits +%endif + -- cgit v1.2.3