From 5065db86f21f01d19a0b792bc8fb80389c8c2997 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 5 Jun 2019 10:29:33 -0700 Subject: [PATCH] compilers/c: Fix removal of name from Combo options for ICL --- mesonbuild/compilers/c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 5d78ba620..3e536ea33 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -292,7 +292,7 @@ class IntelClCCompiler(IntelVisualStudioLikeCompiler, VisualStudioLikeCCompilerM def get_options(self): opts = super().get_options() c_stds = ['none', 'c89', 'c99', 'c11'] - opts.update({'c_std': coredata.UserComboOption('c_std', 'C language standard to use', + opts.update({'c_std': coredata.UserComboOption('C language standard to use', c_stds, 'none')}) return opts