Skip to content

Commit f933b91

Browse files
committed
Suggest emrun, explain writepy()
1 parent 30db875 commit f933b91

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

Tools/wasm/README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tool chain and a build Python interpreter.
1010

1111
### Compile a build Python interpreter
1212

13-
```
13+
```shell
1414
mkdir -p builddir/build
1515
pushd builddir/build
1616
../../configure -C
@@ -20,13 +20,13 @@ popd
2020

2121
### Fetch and build additional emscripten ports
2222

23-
```
23+
```shell
2424
embuilder build zlib
2525
```
2626

2727
### Cross compile to wasm32-emscripten
2828

29-
```
29+
```shell
3030
mkdir -p builddir/emscripten
3131
pushd builddir/emscripten
3232

@@ -43,6 +43,12 @@ emmake make -j$(nproc) python.html
4343

4444
Serve ``python.html`` with a local webserver and open the file in a browser.
4545

46+
```shell
47+
emrun python.html
4648
```
49+
50+
or
51+
52+
```shell
4753
python3 -m http.server
4854
```

Tools/wasm/wasm_assets.py

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ def create_stdlib_zip(
127127
if entry in OMIT_ABSOLUTE:
128128
continue
129129
if entry.name.endswith(".py") or entry.is_dir():
130+
# writepy() writes .pyc files (bytecode)
130131
pzf.writepy(entry, filterfunc=filterfunc)
131132
for entry in sysconfig_data:
132133
pzf.writepy(entry)

0 commit comments

Comments
 (0)