mirror of
https://github.com/mesonbuild/meson.git
synced 2026-08-08 00:30:52 +00:00
update ALL_STDS list for C/C++
This commit is contained in:
committed by
Dylan Baker
parent
d435758194
commit
f7e24f1695
@@ -51,7 +51,7 @@ else:
|
||||
|
||||
ALL_STDS = ['c89', 'c9x', 'c90', 'c99', 'c1x', 'c11', 'c17', 'c18', 'c2x', 'c23', 'c2y']
|
||||
ALL_STDS += [f'gnu{std[1:]}' for std in ALL_STDS]
|
||||
ALL_STDS += ['iso9899:1990', 'iso9899:199409', 'iso9899:1999', 'iso9899:2011', 'iso9899:2017', 'iso9899:2018']
|
||||
ALL_STDS += ['iso9899:1990', 'iso9899:199409', 'iso9899:1999', 'iso9899:2011', 'iso9899:2017', 'iso9899:2018', 'iso9899:2024']
|
||||
|
||||
|
||||
class CCompiler(CLikeCompiler, Compiler):
|
||||
|
||||
@@ -45,7 +45,8 @@ if T.TYPE_CHECKING:
|
||||
else:
|
||||
CompilerMixinBase = object
|
||||
|
||||
ALL_STDS = ['c++98', 'c++0x', 'c++03', 'c++1y', 'c++1z', 'c++11', 'c++14', 'c++17', 'c++2a', 'c++20', 'c++23', 'c++26']
|
||||
ALL_STDS = ['c++98', 'c++0x', 'c++03', 'c++1y', 'c++1z', 'c++11', 'c++14', 'c++17']
|
||||
ALL_STDS += ['c++2a', 'c++2b', 'c++2c', 'c++20', 'c++23', 'c++26']
|
||||
ALL_STDS += [f'gnu{std[1:]}' for std in ALL_STDS]
|
||||
ALL_STDS += ['vc++11', 'vc++14', 'vc++17', 'vc++20', 'vc++latest', 'c++latest']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user