* c++17

* 1z
This commit is contained in:
Willem Melching
2020-10-17 21:40:42 +02:00
committed by GitHub
parent d6ae4f94b3
commit 5c7e91abb7
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ env = Environment(
LINKFLAGS=ldflags_asan,
CFLAGS="-std=gnu11",
CXXFLAGS="-std=c++14",
CXXFLAGS="-std=c++1z",
CPPPATH=cpppath,
)

View File

@@ -31,7 +31,7 @@ class BuildExtWithoutPlatformSuffix(build_ext):
sourcefiles = ['messaging_pyx.pyx']
extra_compile_args = ["-std=c++14", "-Wno-nullability-completeness"]
extra_compile_args = ["-std=c++1z", "-Wno-nullability-completeness"]
libraries = ['zmq']
ARCH = subprocess.check_output(["uname", "-m"], encoding='utf8').rstrip() # pylint: disable=unexpected-keyword-arg