We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50442b5 commit 3bc9dc1Copy full SHA for 3bc9dc1
setup.py
@@ -65,9 +65,9 @@ def build_extension(self, ext):
65
cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(cfg.upper(), extdir)]
66
if sys.maxsize > 2**32:
67
cmake_args += ['-A', 'x64']
68
- build_args += ['--', '/m:4']
+ build_args += ['--', '/m']
69
else:
70
- build_args += ['--', '-j2']
+ build_args += ['--', '-j']
71
72
env = os.environ.copy()
73
env['CXXFLAGS'] = '{} -DVERSION_INFO=\\"{}\\"'.format(env.get('CXXFLAGS', ''),self.distribution.get_version())
0 commit comments