fix build script to specify cxxflags instead of cflags

This commit is contained in:
Josh Holtrop 2016-03-15 21:39:50 -04:00
parent a2fa5a1677
commit d044fc5055

View File

@ -8,4 +8,4 @@ def build(bld):
bld(features = "cxx cxxprogram", bld(features = "cxx cxxprogram",
target = "svi", target = "svi",
source = bld.path.ant_glob("src/**/*.cc"), source = bld.path.ant_glob("src/**/*.cc"),
cflags = ["-Wall"]) cxxflags = ["-Wall", "-std=gnu++14"])