summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--waftools/detections/compiler.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/waftools/detections/compiler.py b/waftools/detections/compiler.py
index 1befec5db5..55fa6d7b16 100644
--- a/waftools/detections/compiler.py
+++ b/waftools/detections/compiler.py
@@ -20,7 +20,12 @@ def __add_generic_flags__(ctx):
ctx.env.CFLAGS += ["-D_ISOC99_SOURCE", "-D_GNU_SOURCE",
"-D_LARGEFILE_SOURCE", "-D_FILE_OFFSET_BITS=64",
"-D_LARGEFILE64_SOURCE",
- "-std=c99", "-Wall"]
+ "-Wall"]
+
+ if ctx.check_cc(cflags="-std=c11", mandatory=False):
+ ctx.env.CFLAGS += ["-std=c11"]
+ else:
+ ctx.env.CFLAGS += ["-std=c99"]
if ctx.is_optimization():
ctx.env.CFLAGS += ['-O2']