SimpleDemo: Use c11 standard instead of c++14.

This commit is contained in:
Andreas Haas
2017-12-25 19:31:30 +01:00
parent 2d88ed96f5
commit a02866daff

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":