We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make install
1 parent 3019c74 commit e28b5afCopy full SHA for e28b5af
1 file changed
src/portable_python/cpython.py
@@ -203,7 +203,8 @@ def _do_linux_compile(self):
203
make_args.append(f"PROFILE_TASK={pgo_tests}")
204
205
self.run_make(*make_args)
206
- self.run_make("install", f"DESTDIR={self.destdir}")
+ # Don't parallelize `make install`, see https://github.com/python/cpython/issues/109796
207
+ self.run_make("install", f"DESTDIR={self.destdir}", cpu_count=0)
208
209
def _finalize(self):
210
is_shared = self.setup.prefix or self.has_configure_opt("--enable-shared", "yes")
0 commit comments