From 26fc76acb6bd86375cc1fef218b3f91708a8f699 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 1 Apr 2013 00:31:22 -0400 Subject: [PATCH] rt/arch/arm: fix syntax used for noexec stack --- src/rt/arch/arm/_context.S | 2 +- src/rt/arch/arm/ccall.S | 2 +- src/rt/arch/arm/morestack.S | 2 +- src/rt/arch/arm/record_sp.S | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rt/arch/arm/_context.S b/src/rt/arch/arm/_context.S index b29575aada9..9097ebfc070 100644 --- a/src/rt/arch/arm/_context.S +++ b/src/rt/arch/arm/_context.S @@ -1,6 +1,6 @@ // Mark stack as non-executable #if defined(__linux__) && defined(__ELF__) -.section .note.GNU-stack, "", @progbits +.section .note.GNU-stack, "", %progbits #endif .text diff --git a/src/rt/arch/arm/ccall.S b/src/rt/arch/arm/ccall.S index 52806d67837..3350a040f53 100644 --- a/src/rt/arch/arm/ccall.S +++ b/src/rt/arch/arm/ccall.S @@ -1,6 +1,6 @@ // Mark stack as non-executable #if defined(__linux__) && defined(__ELF__) -.section .note.GNU-stack, "", @progbits +.section .note.GNU-stack, "", %progbits #endif .text diff --git a/src/rt/arch/arm/morestack.S b/src/rt/arch/arm/morestack.S index ccb23037f79..1afce5bd848 100644 --- a/src/rt/arch/arm/morestack.S +++ b/src/rt/arch/arm/morestack.S @@ -1,6 +1,6 @@ // Mark stack as non-executable #if defined(__linux__) && defined(__ELF__) -.section .note.GNU-stack, "", @progbits +.section .note.GNU-stack, "", %progbits #endif .text diff --git a/src/rt/arch/arm/record_sp.S b/src/rt/arch/arm/record_sp.S index 528359420e6..abd8fbb6a5b 100644 --- a/src/rt/arch/arm/record_sp.S +++ b/src/rt/arch/arm/record_sp.S @@ -1,6 +1,6 @@ // Mark stack as non-executable #if defined(__linux__) && defined(__ELF__) -.section .note.GNU-stack, "", @progbits +.section .note.GNU-stack, "", %progbits #endif .text -- GitLab