Run `make` for the emscripten/host build.
(context, working_dir)
| 569 | |
| 570 | @subdir("host_dir") |
| 571 | def make_emscripten_python(context, working_dir): |
| 572 | """Run `make` for the emscripten/host build.""" |
| 573 | call( |
| 574 | ["make", "--jobs", str(cpu_count()), "all"], |
| 575 | env=updated_env({}, context.emsdk_cache), |
| 576 | quiet=context.quiet, |
| 577 | ) |
| 578 | |
| 579 | exec_script = working_dir / "python.sh" |
| 580 | subprocess.check_call([exec_script, "--version"]) |
| 581 | |
| 582 | |
| 583 | def run_emscripten_python(context): |
nothing calls this directly
no test coverage detected
searching dependent graphs…