Skip to content

Commit

Permalink
Fix typo in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Oct 11, 2017
1 parent 00269f7 commit 9f3d30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
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 9f3d30c

Please sign in to comment.