From d74f67f9a88427652f9e00547904b2e674243d7a Mon Sep 17 00:00:00 2001 From: Ben Visness Date: Thu, 28 Sep 2023 20:29:13 -0500 Subject: [PATCH] Embiggen stack --- src/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime.c b/src/runtime.c index 46d93b0..aadec01 100644 --- a/src/runtime.c +++ b/src/runtime.c @@ -439,7 +439,7 @@ i32 orca_runloop(void* user) fread(app->env.wasmBytecode.ptr, 1, app->env.wasmBytecode.len, file); fclose(file); - u32 stackSize = 65536; + u32 stackSize = 65536 * 20; // MOAR STACK app->env.m3Env = m3_NewEnvironment(); app->env.m3Runtime = m3_NewRuntime(app->env.m3Env, stackSize, NULL);