Skip to content

Commit

Permalink
install: bump to c++17
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Feb 7, 2025
1 parent 33767cf commit 40955ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ def __repr__(self):
extra_compile_args = []
if sys.platform == 'win32':
extra_compile_args += [
'/std:c++11', '/O2'
'/std:c++17', '/O2'
]
if platform.machine() == "x86_64":
extra_compile_args += [ "/arch:SSE3" ]
else:
extra_compile_args += [
'-std=c++11', '-O3' # '-DCYTHON_TRACE=1'
'-std=c++17', '-O3' # '-DCYTHON_TRACE=1'
]
if platform.machine() == "x86_64":
extra_compile_args += [ '-msse3' ]
Expand Down

0 comments on commit 40955ac

Please sign in to comment.