[issue46778] Enable parallel compilation on Windows builds

2022-02-17 Thread Steve Dower
Steve Dower added the comment: New changeset 98dd0aec2d0cb8971fb5363532c25041a5ba6fdc by Jeremy Kloth in branch 'main': bpo-46778: Enable multiprocess compilation for source files when building on Windows (GH-31390)

[issue46778] Enable parallel compilation on Windows builds

2022-02-17 Thread Steve Dower
Steve Dower added the comment: Easy, and thanks for the PR! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46778] Enable parallel compilation on Windows builds

2022-02-17 Thread Jeremy Kloth
Change by Jeremy Kloth : -- keywords: +patch pull_requests: +29535 stage: -> patch review pull_request: https://github.com/python/cpython/pull/31390 ___ Python tracker ___

[issue46778] Enable parallel compilation on Windows builds

2022-02-17 Thread Jeremy Kloth
New submission from Jeremy Kloth : While the current build does enable building of projects in parallel (msbuild -m), the compilation of each project's source files is done sequentially. For large projects like pythoncore or _freeze_module this can take quite some time. This simple PR