Merge pull request #17 from Hinsbart/std_c11

SimpleDemo: Use c11 standard instead of c++14.
This commit is contained in:
Thomas Herzog
2017-12-25 22:01:29 +01:00
committed by GitHub

View File

@@ -29,7 +29,7 @@ if platform == "osx":
env.Append(LINKFLAGS = ['-arch', 'x86_64'])
if platform == "linux":
env.Append(CCFLAGS = ['-fPIC', '-g','-O3', '-std=c++14'])
env.Append(CCFLAGS = ['-fPIC', '-g','-O3', '-std=c11'])
if platform == "windows":
if target == "debug":