Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -1365,10 +1365,15 @@ def setup(self, **kwargs):
env=compile_environ,
),
Compile(
name="Compile host libFFI",
name="Compile host libffi",
command=["python3", "Tools/wasm/emscripten", "make-libffi"],
env=compile_environ,
),
Compile(
name="Compile host libmpdec",
command=["python3", "Tools/wasm/emscripten", "make-mpdec"],
env=compile_environ,
),
Configure(
Comment on lines +1372 to 1383
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
])
if branch != '3.14':
# Can enable on 3.14 if/when python/cpython#137066 is merged
self.addStep(
Compile(
name="Compile host libmpdec",
command=["python3", "Tools/wasm/emscripten", "make-mpdec"],
env=compile_environ,
)
)
self.addSteps([
Configure(
Compile(
name="Compile host libmpdec",
command=["python3", "Tools/wasm/emscripten", "make-mpdec"],
env=compile_environ,
),
Configure(

name="Configure host Python",
command=["python3", "Tools/wasm/emscripten", "configure-host"],
Expand Down