From 993591dca14a822b48be44513fa01d7ad10e0c61 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 2 Jul 2020 18:17:48 +0800 Subject: [PATCH] arch/x86_64: Fix Warning: ignoring changed section attributes chip/intel64_head.S: Assembler messages: chip/intel64_head.S:281: Warning: ignoring changed section attributes for .text chip/intel64_head.S:485: Warning: ignoring changed section attributes for .bss Signed-off-by: Xiang Xiao --- arch/x86_64/src/intel64/intel64_head.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86_64/src/intel64/intel64_head.S b/arch/x86_64/src/intel64/intel64_head.S index 244841b92cd..3297bc8af5f 100644 --- a/arch/x86_64/src/intel64/intel64_head.S +++ b/arch/x86_64/src/intel64/intel64_head.S @@ -278,7 +278,7 @@ start64: * ****************************************************************************/ - .section .text, "a" + .section .text, "ax" .type __nxstart, @function __nxstart: @@ -482,7 +482,7 @@ pt_low: * do in the system (see up_idle()). */ - .section .bss, "a" + .section .bss .type idle_stack, @object .comm idle_stack, CONFIG_IDLETHREAD_STACKSIZE, 32