Python building only with one job in parallel

Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
Fabian Sauter 2022-07-26 12:45:00 +02:00
parent 4b7e3b13f8
commit f2457b32c7

View file

@ -51,7 +51,8 @@ class CMakeBuild(build_ext):
]
cfg = 'Debug' if self.debug else 'Release'
build_args = ['--config', cfg]
build_args = ['--config', cfg,
'--parallel', '1']
env = os.environ.copy()
oldCxxFlags = env.get('CXXFLAGS', '')