Closed
Description
Describe the bug
The devguide suggests using make -j
to build CPython in a few places, which is not actually a good idea. make -j
means no limit on the number of parallel jobs, not "a sensible limit". It already uses make -j4
in a few places, and that's a very reasonable default that will work well for machines with 2-10 cores. Let's do that everywhere.
Screenshots
No response
Additional context
No response