Skip to content

Commit

Permalink
Remove -std=c++11 compile option, as clang trips over this
Browse files Browse the repository at this point in the history
on macOS. See #3
  • Loading branch information
Paul Melis committed Aug 6, 2019
1 parent ed65494 commit 14e987f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@

module1 = Extension('readply',
include_dirs = ['./rply', numpy.get_include()],
sources = ['readply.cpp', 'rply/rply.c'],
extra_compile_args = ['-std=c++11'],
language='c++11')
sources = ['readply.cpp', 'rply/rply.c'])

setup(
name = 'readply',
Expand Down

0 comments on commit 14e987f

Please sign in to comment.