We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abb25ca + 0a5742c commit 99df3eeCopy full SHA for 99df3ee
setup.py
@@ -31,8 +31,8 @@ def compilePyBroma():
31
# extra_link_args=[],
32
# We need this to be /std:c++17 on windows otherwise compilation will break due to the existance of "std::variant"
33
extra_compile_args=[
34
- "/O2",
35
- ("/std:c++17" if sys.platform == "win32" else "--std:c++17"),
+ ("/O2" if sys.platform == "win32" else "-O2"),
+ ("/std:c++17" if sys.platform == "win32" else "--std=c++17"),
36
],
37
)
38
]
0 commit comments