diff options
author | Brett Cannon <brett@python.org> | 2024-12-06 18:42:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-06 18:42:05 (GMT) |
commit | 0fc4063747c96223575f6f5a0562eddf2ed0ed62 (patch) | |
tree | b5e94e6444ae75035ce4316d19217696a5bb4d4d | |
parent | 5b6635f772d187d6049a56bfea76855644cd4ca1 (diff) | |
download | cpython-0fc4063747c96223575f6f5a0562eddf2ed0ed62.zip cpython-0fc4063747c96223575f6f5a0562eddf2ed0ed62.tar.gz cpython-0fc4063747c96223575f6f5a0562eddf2ed0ed62.tar.bz2 |
GH-127652: stop using `--wasi preview2` in `wasi.py` (GH-127704)
It's only to use WASI 0.2 code to back preview1 APIs and is considered experimental anyway.
-rw-r--r-- | Tools/wasm/wasi.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/wasm/wasi.py b/Tools/wasm/wasi.py index ac36d55..da847c4 100644 --- a/Tools/wasm/wasi.py +++ b/Tools/wasm/wasi.py @@ -297,8 +297,6 @@ def main(): # build. # Use 16 MiB stack. "--wasm max-wasm-stack=16777216 " - # Use WASI 0.2 primitives. - "--wasi preview2 " # Enable thread support; causes use of preview1. #"--wasm threads=y --wasi threads=y " # Map the checkout to / to load the stdlib from /Lib. |