Skip to content

Commit

Permalink
Reduce parallelism from 16->8 to reduce RAM consumption during build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Jul 15, 2024
1 parent 657dd01 commit 7944d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def build_extension(self, ext):
build_args = ['--config', cfg]

cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
build_args += ['--', '-j16']
build_args += ['--', '-j8']

env = os.environ.copy()
env['CXXFLAGS'] = '{} -DVERSION_INFO=\\"{}\\"'.format(env.get('CXXFLAGS', ''),
Expand Down

0 comments on commit 7944d22

Please sign in to comment.