File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,20 @@ to a repository checkout.
23
23
Christian Heimes maintains a container image with Emscripten SDK, Python
24
24
build dependencies, WASI-SDK, wasmtime, and several additional tools.
25
25
26
+ From within your local CPython repo clone, run one of the following commands:
27
+
26
28
```
27
29
# Fedora, RHEL, CentOS
28
- podman run --rm -ti -v $(pwd):/python-wasm/cpython:Z quay.io/tiran/cpythonbuild:emsdk3
30
+ podman run --rm -ti -v $(pwd):/python-wasm/cpython:Z -w /python-wasm/cpython quay.io/tiran/cpythonbuild:emsdk3
29
31
30
32
# other
31
- docker run --rm -ti -v $(pwd):/python-wasm/cpython quay.io/tiran/cpythonbuild:emsdk3
33
+ docker run --rm -ti -v $(pwd):/python-wasm/cpython -w /python-wasm/cpython quay.io/tiran/cpythonbuild:emsdk3
32
34
```
33
35
34
36
### Compile a build Python interpreter
35
37
38
+ From within the container, run the following commands:
39
+
36
40
``` shell
37
41
mkdir -p builddir/build
38
42
pushd builddir/build
You can’t perform that action at this time.
0 commit comments