targets (wasi/wasm): raise default stack size to 16 KiB

In some cases, 8 KiB is not enough for both the C stack and the asyncify stack.
This gets the compress/zlib tests to fail without crashing.
This commit is contained in:
Nia Waldvogel
2021-12-30 09:33:15 -05:00
committed by Nia
parent f9f2349850
commit a4f9e5e552
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
"linker": "wasm-ld",
"libc": "wasi-libc",
"scheduler": "asyncify",
"default-stack-size": 8192,
"default-stack-size": 16384,
"ldflags": [
"--allow-undefined",
"--stack-first",
+1 -1
View File
@@ -7,7 +7,7 @@
"linker": "wasm-ld",
"libc": "wasi-libc",
"scheduler": "asyncify",
"default-stack-size": 8192,
"default-stack-size": 16384,
"ldflags": [
"--allow-undefined",
"--stack-first",