From 8b31c6fcf4c13970347e06d3333d0f0660785155 Mon Sep 17 00:00:00 2001 From: Milan Rossa Date: Mon, 27 May 2019 14:23:04 +0200 Subject: [PATCH] core: increase stack size for unix port --- core/embed/unix/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/unix/main.c b/core/embed/unix/main.c index c14049d26..3de795cdf 100644 --- a/core/embed/unix/main.c +++ b/core/embed/unix/main.c @@ -461,7 +461,7 @@ MP_NOINLINE int main_(int argc, char **argv) { signal(SIGPIPE, SIG_IGN); #endif - mp_stack_set_limit(60000 * (BYTES_PER_WORD / 4)); + mp_stack_set_limit(600000 * (BYTES_PER_WORD / 4)); pre_process_options(argc, argv);