Skip to content

Commit 6af9fd2

Browse files
committed
build: require gcc 15 for all CI builds
1 parent 44e643d commit 6af9fd2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/options/meson.build

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

49-
gcc_14_compiler = {
49+
gcc_15_compiler = {
5050
'id': 'gcc',
51-
'checks': ['>=14', '<15'],
51+
'checks': ['>=15', '<16'],
5252
}
5353

5454
msvc_compiler_current = {
@@ -66,10 +66,10 @@ if get_option('run_in_ci')
6666
'compilers': [clang_20_compiler],
6767
},
6868
'cross_3ds': {
69-
'compilers': [gcc_14_compiler],
69+
'compilers': [gcc_15_compiler],
7070
},
7171
'cross_switch': {
72-
'compilers': [gcc_14_compiler],
72+
'compilers': [gcc_15_compiler],
7373
},
7474
'cross_emscripten': {
7575
'compilers': [emscripten_compiler_current],
@@ -78,10 +78,10 @@ if get_option('run_in_ci')
7878
'compilers': [msvc_compiler_current],
7979
},
8080
'msys2': {
81-
'compilers': [gcc_14_compiler],
81+
'compilers': [gcc_15_compiler],
8282
},
8383
'linux': {
84-
'compilers': [clang_20_compiler, gcc_14_compiler],
84+
'compilers': [clang_20_compiler, gcc_15_compiler],
8585
},
8686
'darwin': {
8787
'compilers': [clang_20_compiler],

0 commit comments

Comments
 (0)