From c812a837ab9a4b4332673f20103170c645a2c29e Mon Sep 17 00:00:00 2001 From: occheung Date: Thu, 2 Sep 2021 14:13:52 +0800 Subject: [PATCH] runtime: enlarge stack size --- artiq/firmware/runtime/runtime.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/firmware/runtime/runtime.ld b/artiq/firmware/runtime/runtime.ld index 57d76ee45..b1a7ad7e3 100644 --- a/artiq/firmware/runtime/runtime.ld +++ b/artiq/firmware/runtime/runtime.ld @@ -71,7 +71,7 @@ SECTIONS .stack (NOLOAD) : ALIGN(16) { - . += 0x4000; + . += 0x10000; _fstack = . - 16; } > runtime