Embiggen stack

This commit is contained in:
Ben Visness 2023-09-28 20:29:13 -05:00
parent caed72856e
commit d74f67f9a8
1 changed files with 1 additions and 1 deletions

View File

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