We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2445d46 commit 187228aCopy full SHA for 187228a
tools/options/meson.build
@@ -45,18 +45,24 @@ if get_option('run_in_ci')
45
'id': 'clang',
46
'checks': ['>=19', '<20'],
47
}
48
+ clang_20_compiler = {
49
+ 'id': 'clang',
50
+ 'checks': ['>=20', '<21'],
51
+ }
52
+
53
gcc_14_compiler = {
54
'id': 'gcc',
55
'checks': ['>=14', '<15'],
56
57
58
msvc_compiler_current = {
59
'id': 'msvc',
60
'checks': ['>=19.43', '<20'],
61
62
63
ci_config = {
64
'cross_android': {
- 'compilers': [clang_19_compiler],
65
+ 'compilers': [clang_20_compiler],
66
},
67
'cross_3ds': {
68
'compilers': [gcc_14_compiler],
0 commit comments