File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ tool chain and a build Python interpreter.
10
10
11
11
### Compile a build Python interpreter
12
12
13
- ```
13
+ ``` shell
14
14
mkdir -p builddir/build
15
15
pushd builddir/build
16
16
../../configure -C
20
20
21
21
### Fetch and build additional emscripten ports
22
22
23
- ```
23
+ ``` shell
24
24
embuilder build zlib
25
25
```
26
26
27
27
### Cross compile to wasm32-emscripten
28
28
29
- ```
29
+ ``` shell
30
30
mkdir -p builddir/emscripten
31
31
pushd builddir/emscripten
32
32
@@ -43,6 +43,12 @@ emmake make -j$(nproc) python.html
43
43
44
44
Serve `` python.html `` with a local webserver and open the file in a browser.
45
45
46
+ ``` shell
47
+ emrun python.html
46
48
```
49
+
50
+ or
51
+
52
+ ``` shell
47
53
python3 -m http.server
48
54
```
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ def create_stdlib_zip(
127
127
if entry in OMIT_ABSOLUTE :
128
128
continue
129
129
if entry .name .endswith (".py" ) or entry .is_dir ():
130
+ # writepy() writes .pyc files (bytecode)
130
131
pzf .writepy (entry , filterfunc = filterfunc )
131
132
for entry in sysconfig_data :
132
133
pzf .writepy (entry )
You can’t perform that action at this time.
0 commit comments