forked from pool/meson
19 lines
881 B
Diff
19 lines
881 B
Diff
--- a/mesonbuild/compilers/cpp.py
|
|
+++ b/mesonbuild/compilers/cpp.py
|
|
@@ -75,9 +75,13 @@
|
|
'3': default_warn_args + ['-Wextra', '-Wpedantic']}
|
|
|
|
def get_options(self):
|
|
+ c_stds = ['c++03', 'c++11']
|
|
+ g_stds = ['gnu++11']
|
|
+ if version_compare(self.version, '>=5.0.0'):
|
|
+ c_stds += ['c++14', 'c++1z']
|
|
+ g_stds += ['gnu++14', 'gnu++1z']
|
|
return {'cpp_std': coredata.UserComboOption('cpp_std', 'C++ language standard to use',
|
|
- ['none', 'c++03', 'c++11', 'c++14', 'c++1z',
|
|
- 'gnu++11', 'gnu++14', 'gnu++1z'],
|
|
+ ['none'] + c_stds + g_stds,
|
|
'none')}
|
|
|
|
def get_option_compile_args(self, options):
|