increase stack size
This commit is contained in:
parent
977f63b14f
commit
3ac35acfca
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue