1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 14:58:09 +00:00

core: increase stack size for unix port

This commit is contained in:
Milan Rossa 2019-05-27 14:23:04 +02:00 committed by Pavol Rusnak
parent 9bc3af08b2
commit 8b31c6fcf4
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -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);