Skip to content

Commit

Permalink
NLWPY: disable -std=c++17, let compiler choose #30
Browse files Browse the repository at this point in the history
We need C++17
  • Loading branch information
glebbelov committed Feb 23, 2024
1 parent 0331c7c commit ac85ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nl-writer2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
Extension(
"nlwpy",
["nlwpy/src/nlw_bindings.cc"] + glob.glob("./src/" + "*.cc"),
extra_compile_args=["-std=c++17"],
# extra_compile_args=["-std=c++17"], - need all platforms
include_dirs=["include", pybind11.get_include()],
# Example: passing in the version to the compiled code
define_macros=[("VERSION_INFO", __version__)],
Expand Down

0 comments on commit ac85ea3

Please sign in to comment.