From d044fc50556d73125e9db0ebce36cb58ae9ee159 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 15 Mar 2016 21:39:50 -0400 Subject: [PATCH] fix build script to specify cxxflags instead of cflags --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index f557f21..101a94d 100644 --- a/wscript +++ b/wscript @@ -8,4 +8,4 @@ def build(bld): bld(features = "cxx cxxprogram", target = "svi", source = bld.path.ant_glob("src/**/*.cc"), - cflags = ["-Wall"]) + cxxflags = ["-Wall", "-std=gnu++14"])