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 53f52a0 commit 0b30611Copy full SHA for 0b30611
setup.py
@@ -55,9 +55,9 @@ def spawn(self, cmd):
55
link_flags = []
56
macros = {'LIBSASS_PYTHON_VERSION': '\\"' + version + '\\"'}
57
else:
58
- flags = ['-fPIC', '-Wall', '-Wno-parentheses']
59
- if sys.platform != 'darwin':
60
- flags.append('-Wno-tautological-compare')
+ flags = ['-fPIC', '-Wall', '-Wno-parentheses', '-Wno-tautological-compare']
+ if sys.platform == 'darwin':
+ flags.pop()
61
link_flags = ['-fPIC', '-lstdc++']
62
macros = {'LIBSASS_PYTHON_VERSION': '"' + version + '"'}
63
0 commit comments