MCPcopy Index your code
hub / github.com/python/cpython / build_target

Function build_target

Platforms/emscripten/__main__.py:604–621  ·  view source on GitHub ↗

Build one or more targets.

(context)

Source from the content-addressed store, hash-verified

602
603
604def build_target(context):
605 """Build one or more targets."""
606 steps = []
607 if context.target in {"build", "all"}:
608 steps.extend([
609 configure_build_python,
610 make_build_python,
611 ])
612 if context.target in {"host", "all"}:
613 steps.extend([
614 make_emscripten_libffi,
615 make_mpdec,
616 configure_emscripten_python,
617 make_emscripten_python,
618 ])
619
620 for step in steps:
621 step(context)
622
623
624def clean_contents(context):

Callers

nothing calls this directly

Calls 1

extendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…