Skip to content

Commit 9457922

Browse files
committed
fix: allow clang 21 compiler for android
1 parent 4e8d756 commit 9457922

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tools/options/meson.build

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ if get_option('run_in_ci')
4646
'checks': ['>=20', '<21'],
4747
}
4848

49+
clang_21_compiler = {
50+
'id': 'clang',
51+
'checks': ['>=21', '<22'],
52+
}
53+
4954
gcc_14_compiler = {
5055
'id': 'gcc',
5156
'checks': ['>=14', '<15'],
@@ -68,7 +73,7 @@ if get_option('run_in_ci')
6873

6974
ci_config = {
7075
'cross_android': {
71-
'compilers': [clang_20_compiler],
76+
'compilers': [clang_21_compiler],
7277
},
7378
'cross_3ds': {
7479
'compilers': [gcc_14_compiler],

0 commit comments

Comments
 (0)