aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-07 22:07:54 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit68b30967872915b93c600e353d2fd6d5fb4987c6 (patch)
tree8ee713219de2a4ff518450eb50690291eede0fd8 /wscript
parente56e7291095bc9ba2368054601297c2cc65cdf90 (diff)
downloadserd-68b30967872915b93c600e353d2fd6d5fb4987c6.tar.gz
serd-68b30967872915b93c600e353d2fd6d5fb4987c6.tar.bz2
serd-68b30967872915b93c600e353d2fd6d5fb4987c6.zip
Use C11 if possible
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/wscript b/wscript
index b757bee1..21e95b69 100644
--- a/wscript
+++ b/wscript
@@ -44,7 +44,9 @@ def options(ctx):
def configure(conf):
conf.load('compiler_c', cache=True)
conf.load('autowaf', cache=True)
- autowaf.set_c_lang(conf, 'c99')
+
+ if not autowaf.set_c_lang(conf, 'c11', mandatory=False):
+ autowaf.set_c_lang(conf, 'c99')
if Options.options.strict:
# Check for programs used by lint target