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 821eb4b commit 2cda428Copy full SHA for 2cda428
tools/options/meson.build
@@ -41,10 +41,6 @@ if get_option('run_in_ci')
41
system_name = 'msys2'
42
endif
43
44
- clang_19_compiler = {
45
- 'id': 'clang',
46
- 'checks': ['>=19', '<20'],
47
- }
48
clang_20_compiler = {
49
'id': 'clang',
50
'checks': ['>=20', '<21'],
@@ -85,10 +81,10 @@ if get_option('run_in_ci')
85
81
'compilers': [gcc_14_compiler],
86
82
},
87
83
'linux': {
88
- 'compilers': [clang_19_compiler, gcc_14_compiler],
84
+ 'compilers': [clang_20_compiler, gcc_14_compiler],
89
90
'darwin': {
91
- 'compilers': [clang_19_compiler],
+ 'compilers': [clang_20_compiler],
92
93
}
94
0 commit comments