Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-95205: Improve wasm README #95206

Merged
merged 9 commits into from
Jul 25, 2022
4 changes: 3 additions & 1 deletion Tools/wasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ to a repository checkout.
Christian Heimes maintains a container image with Emscripten SDK, Python
build dependencies, WASI-SDK, wasmtime, and several additional tools.

From within your local CPython repo fork, run one of the following commands:
erlend-aasland marked this conversation as resolved.
Show resolved Hide resolved

```
# Fedora, RHEL, CentOS
podman run --rm -ti -v $(pwd):/python-wasm/cpython:Z quay.io/tiran/cpythonbuild:emsdk3
erlend-aasland marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -36,7 +38,7 @@ docker run --rm -ti -v $(pwd):/python-wasm/cpython quay.io/tiran/cpythonbuild:em
```shell
mkdir -p builddir/build
pushd builddir/build
../../configure -C
../../cpython/configure -C
erlend-aasland marked this conversation as resolved.
Show resolved Hide resolved
make -j$(nproc)
popd
```
Expand Down