Skip to content

Commit 48314e2

Browse files
committed
fix: use clang 20 for android, as the ndk we use, already uses that
1 parent b4376c3 commit 48314e2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tools/options/meson.build

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,24 @@ if get_option('run_in_ci')
4545
'id': 'clang',
4646
'checks': ['>=19', '<20'],
4747
}
48+
clang_20_compiler = {
49+
'id': 'clang',
50+
'checks': ['>=20', '<21'],
51+
}
52+
4853
gcc_14_compiler = {
4954
'id': 'gcc',
5055
'checks': ['>=14', '<15'],
5156
}
57+
5258
msvc_compiler_current = {
5359
'id': 'msvc',
5460
'checks': ['>=19.43', '<20'],
5561
}
5662

5763
ci_config = {
5864
'cross_android': {
59-
'compilers': [clang_19_compiler],
65+
'compilers': [clang_20_compiler],
6066
},
6167
'cross_3ds': {
6268
'compilers': [gcc_14_compiler],

0 commit comments

Comments
 (0)