From a02866daffdaf29e53c2fcef250c38dd33b2d1f9 Mon Sep 17 00:00:00 2001 From: Andreas Haas Date: Mon, 25 Dec 2017 19:31:30 +0100 Subject: [PATCH] SimpleDemo: Use c11 standard instead of c++14. --- c/SimpleDemo/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/SimpleDemo/SConstruct b/c/SimpleDemo/SConstruct index 8706b42..8b0fc8d 100644 --- a/c/SimpleDemo/SConstruct +++ b/c/SimpleDemo/SConstruct @@ -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":