Fixing compilation errors with capnproto-7.0.0

This commit is contained in:
Jacob Alexander
2019-09-16 21:33:56 -07:00
parent bc1a3a5f3f
commit de22f7eb97
6 changed files with 6 additions and 6 deletions

View File

@@ -58,7 +58,7 @@ def test_compilation(cfile, compiler=None, **compiler_attrs):
else:
lpreargs = ['-m64']
extra = compiler_attrs.get('extra_compile_args', [])
extra += ['--std=c++11']
extra += ['--std=c++14']
objs = cc.compile([cfile], extra_preargs=cpreargs, extra_postargs=extra)
cc.link_executable(objs, efile, extra_preargs=lpreargs)