increase stack size

This commit is contained in:
Liam Kerr 2026-02-09 21:00:25 +00:00
parent 977f63b14f
commit 3ac35acfca

View file

@ -28,7 +28,7 @@ SECTIONS
/* Keep the stack at the very end to prevent it from overwriting code if it overflows */ /* Keep the stack at the very end to prevent it from overwriting code if it overflows */
. = ALIGN(16); . = ALIGN(16);
PROVIDE(_stack_bottom = .); PROVIDE(_stack_bottom = .);
. += 4096; . += 16384; /* 16k stack */
PROVIDE(stack_top = .); PROVIDE(stack_top = .);
. = ALIGN(4K); . = ALIGN(4K);