We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0406ed5 commit ac3a219Copy full SHA for ac3a219
setup.py
@@ -8,9 +8,9 @@
8
from distutils.core import setup, Extension
9
10
if os.name == 'nt':
11
- cpp_args = [' /std:c++17' ' /O3']
+ cpp_args = ['/std:c++17 /O3']
12
else:
13
- cpp_args = [' -std=c++17', ' -lpthread', ' -O3']
+ cpp_args = ['-std=c++17 -O3 -lpthread']
14
15
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
16
with open(README_PATH) as readme_file:
0 commit comments