Skip to content

Commit

Permalink
Merge branch 'work/increase-zynq7000-stack-sizes' into 'master'
Browse files Browse the repository at this point in the history
zynq7000: use huge stack size

See merge request eng/toolchain/bb-runtimes!96
  • Loading branch information
burratoo committed May 24, 2024
2 parents 860a06d + 995aec0 commit a297593
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions arm/cortexar.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,10 @@ def mcu(self):
def fpu(self):
return "vfpv3"

@property
def has_huge_memory(self):
return True

@property
def compiler_switches(self):
# The required compiler switches
Expand Down
2 changes: 1 addition & 1 deletion arm/zynq/ram.ld
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/* This script replaces ld's default linker script, providing the
appropriate memory map and output format. */

_DEFAULT_STACK_SIZE = (20 * 1024);
_DEFAULT_STACK_SIZE = (2 * 1024 * 1024);

_UNDEF_STACK_SIZE = 256;
_ABORT_STACK_SIZE = 256;
Expand Down

0 comments on commit a297593

Please sign in to comment.