Skip to content

Commit

Permalink
Merge pull request #223 from dahlia/setup_py_typo
Browse files Browse the repository at this point in the history
Fix typo in setup.py
  • Loading branch information
asottile committed Oct 11, 2017
2 parents 00269f7 + 9f3d30c commit 2025756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -37,7 +37,7 @@ def customize_compiler(compiler):
compiler.linker_so[0] = os.environ['CXX']
return compiler
distutils.sysconfig.customize_compiler = customize_compiler
flags[:] = ['-c', '-O3'] + flags + ['stdlib=libc++']
flags[:] = ['-c', '-O3'] + flags + ['-stdlib=libc++']


def _maybe_macos(flags):
Expand Down

0 comments on commit 2025756

Please sign in to comment.