From 0f7ae730d9ab28aaa51a938075502f639947d26f Mon Sep 17 00:00:00 2001 From: Michael Cahill Date: Mon, 23 May 2016 20:42:49 +1000 Subject: WT-2629 Don't make stacks executable in assembly source. (#2739) --- src/checksum/power8/crc32.S | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/checksum/power8/crc32.S b/src/checksum/power8/crc32.S index c0b81143f07..9c2819030b9 100644 --- a/src/checksum/power8/crc32.S +++ b/src/checksum/power8/crc32.S @@ -769,3 +769,6 @@ FUNC_START(__crc32_vpmsum) FUNC_END(__crc32_vpmsum) #endif + +/* Make sure the stack isn't executable (regardless of platform). */ +.section .note.GNU-stack,"",@progbits -- cgit v1.2.1