Skip to content

Commit ac3a219

Browse files
Fix cpp_args
1 parent 0406ed5 commit ac3a219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
from distutils.core import setup, Extension
99

1010
if os.name == 'nt':
11-
cpp_args = [' /std:c++17' ' /O3']
11+
cpp_args = ['/std:c++17 /O3']
1212
else:
13-
cpp_args = [' -std=c++17', ' -lpthread', ' -O3']
13+
cpp_args = ['-std=c++17 -O3 -lpthread']
1414

1515
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
1616
with open(README_PATH) as readme_file:

0 commit comments

Comments
 (0)