diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-06-05 10:29:33 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-06-06 01:57:13 +0300 |
commit | 5065db86f21f01d19a0b792bc8fb80389c8c2997 (patch) | |
tree | 9161fe6b2a85fdbe390749bb1d22ca3a88cb3cf8 | |
parent | 906aa4cb540ce283e3562df568405ba70d179835 (diff) | |
download | meson-5065db86f21f01d19a0b792bc8fb80389c8c2997.zip meson-5065db86f21f01d19a0b792bc8fb80389c8c2997.tar.gz meson-5065db86f21f01d19a0b792bc8fb80389c8c2997.tar.bz2 |
compilers/c: Fix removal of name from Combo options for ICL
-rw-r--r-- | mesonbuild/compilers/c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 5d78ba6..3e536ea 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 |