The implementation of the "make-build" command.
(context: argparse.Namespace)
| 264 | |
| 265 | |
| 266 | def make_build_python(context: argparse.Namespace) -> None: |
| 267 | """The implementation of the "make-build" command.""" |
| 268 | with ( |
| 269 | group("Compiling build Python"), |
| 270 | cwd(subdir("build")), |
| 271 | ): |
| 272 | run(["make", "-j", str(os.cpu_count())]) |
| 273 | |
| 274 | |
| 275 | def apple_target(host: str) -> str: |