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 e09811e commit 1df568fCopy full SHA for 1df568f
setup.py
@@ -17,7 +17,8 @@ def get_include(): # TODO
17
18
def __extra_compile_args():
19
extra_compile_args = []
20
- if platform.system() == 'darwin':
+ print("Platform is "+ platform.system())
21
+ if platform.system() == 'darwin' or 'macOS':
22
extra_compile_args = ["-std=c++11"]
23
else:
24
extra_compile_args = ["-fopenmp", "-std=c++11"]
0 commit comments