summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/compilers/c.py2
-rw-r--r--mesonbuild/compilers/cpp.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index 8379f81ba..ddd8bed32 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -99,7 +99,7 @@ class CCompiler(CLikeCompiler, Compiler):
opts = super().get_options()
key = self.form_compileropt_key('std')
opts.update({
- key: options.UserStdOption('C', ALL_STDS),
+ key: options.UserStdOption('c', ALL_STDS),
})
return opts
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index 37d82c395..fcc5ddef2 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -175,7 +175,7 @@ class CPPCompiler(CLikeCompiler, Compiler):
opts = super().get_options()
key = self.form_compileropt_key('std')
opts.update({
- key: options.UserStdOption('C++', ALL_STDS),
+ key: options.UserStdOption('cpp', ALL_STDS),
})
return opts