Skip to content

Commit db4c824

Browse files
committed
Add Emscripten libmpdec build step
Goes together with: python/cpython#136997
1 parent 847d2ed commit db4c824

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

master/custom/factories.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1365,10 +1365,15 @@ def setup(self, **kwargs):
13651365
env=compile_environ,
13661366
),
13671367
Compile(
1368-
name="Compile host libFFI",
1368+
name="Compile host libffi",
13691369
command=["python3", "Tools/wasm/emscripten", "make-libffi"],
13701370
env=compile_environ,
13711371
),
1372+
Compile(
1373+
name="Compile host libmpdecimal",
1374+
command=["python3", "Tools/wasm/emscripten", "make-mpdec"],
1375+
env=compile_environ,
1376+
),
13721377
Configure(
13731378
name="Configure host Python",
13741379
command=["python3", "Tools/wasm/emscripten", "configure-host"],

0 commit comments

Comments
 (0)