diff options
author | Brett Cannon <brett@python.org> | 2024-07-16 20:00:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 20:00:39 (GMT) |
commit | f589f263bcb54332e47bfc76cbb06f775e82b778 (patch) | |
tree | be0c344031a96a87c275f570d03274c3ca0f0261 /.devcontainer/Dockerfile | |
parent | e65cb4c6f01a687f451ad9db1600525e1c5832c4 (diff) | |
download | cpython-f589f263bcb54332e47bfc76cbb06f775e82b778.zip cpython-f589f263bcb54332e47bfc76cbb06f775e82b778.tar.gz cpython-f589f263bcb54332e47bfc76cbb06f775e82b778.tar.bz2 |
GH-120371: Add WASI SDK 22 support (GH-121870)
Required disabling stub functions now provided by wasi-libc.
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r-- | .devcontainer/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 98ab400..a4ada1b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/library/fedora:40 ENV CC=clang -ENV WASI_SDK_VERSION=21 +ENV WASI_SDK_VERSION=22 ENV WASI_SDK_PATH=/opt/wasi-sdk ENV WASMTIME_HOME=/opt/wasmtime |