aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld
diff options
context:
space:
mode:
Diffstat (limited to 'os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld')
-rw-r--r--os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld b/os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld
index 5993da95f..087f913fa 100644
--- a/os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld
+++ b/os/common/startup/ARMCMx/compilers/GCC/ld/rules_stacks.ld
@@ -17,7 +17,7 @@
SECTIONS
{
/* Special section for exceptions stack.*/
- .mstack :
+ .mstack (NOLOAD) :
{
. = ALIGN(8);
__main_stack_base__ = .;
@@ -27,7 +27,7 @@ SECTIONS
} > MAIN_STACK_RAM
/* Special section for process stack.*/
- .pstack :
+ .pstack (NOLOAD) :
{
__process_stack_base__ = .;
__main_thread_stack_base__ = .;