Skip to content

Commit

Permalink
Set C++ version to C++11 explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
Crissium committed Feb 4, 2024
1 parent 6172d9d commit 4c80327
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
ext_modules=[
Extension(
'dsl',
['src/utils.cc', 'src/parse.cc', 'src/build.cc', 'src/dslmodule.cc']
['src/utils.cc', 'src/parse.cc', 'src/build.cc', 'src/dslmodule.cc'],
extra_compile_args=['-std=c++11']
)
]
)

0 comments on commit 4c80327

Please sign in to comment.