Python building only with one job in parallel
Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
parent
4b7e3b13f8
commit
f2457b32c7
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
|
@ -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', '')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue