diff options
author | Victor Stinner <vstinner@python.org> | 2024-04-16 21:26:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 21:26:54 (GMT) |
commit | 919784737c69e0f8e34d7d7a2e85b02628af6e66 (patch) | |
tree | c41e2cc503f45d50968c98c892c1242a73696566 /configure | |
parent | 3fe03ccea61121b05e933013f76aa02f690014c1 (diff) | |
download | cpython-919784737c69e0f8e34d7d7a2e85b02628af6e66.zip cpython-919784737c69e0f8e34d7d7a2e85b02628af6e66.tar.gz cpython-919784737c69e0f8e34d7d7a2e85b02628af6e66.tar.bz2 |
gh-117645: Increase WASI stack size from 512 KiB to 8 MiB (#117674)
Increase also the initial memory from 10 MiB to 20 MiB.
Reenable test_dynamic on WASI build.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9530,7 +9530,7 @@ then : fi - as_fn_append LDFLAGS_NODIST " -z stack-size=524288 -Wl,--stack-first -Wl,--initial-memory=10485760" + as_fn_append LDFLAGS_NODIST " -z stack-size=8388608 -Wl,--stack-first -Wl,--initial-memory=20971520" ;; #( *) : |