From ac85ea31e95f46b5995551dcfc68e5a535f7ab0f Mon Sep 17 00:00:00 2001 From: Gleb Belov Date: Fri, 23 Feb 2024 23:02:34 +1100 Subject: [PATCH] NLWPY: disable -std=c++17, let compiler choose #30 We need C++17 --- nl-writer2/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nl-writer2/setup.py b/nl-writer2/setup.py index bcc15550c..57c0b144b 100644 --- a/nl-writer2/setup.py +++ b/nl-writer2/setup.py @@ -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__)],