Skip to content

Commit b2df33f

Browse files
committed
build: require gcc 15 for all CI builds
1 parent 22b7ca1 commit b2df33f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

tools/options/meson.build

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

53-
gcc_14_compiler = {
53+
gcc_15_compiler = {
5454
'id': 'gcc',
55-
'checks': ['>=14', '<15'],
55+
'checks': ['>=15', '<16'],
5656
}
5757

5858
msvc_compiler_current = {
@@ -70,10 +70,10 @@ if get_option('run_in_ci')
7070
'compilers': [clang_20_compiler],
7171
},
7272
'cross_3ds': {
73-
'compilers': [gcc_14_compiler],
73+
'compilers': [gcc_15_compiler],
7474
},
7575
'cross_switch': {
76-
'compilers': [gcc_14_compiler],
76+
'compilers': [gcc_15_compiler],
7777
},
7878
'cross_emscripten': {
7979
'compilers': [emscripten_compiler_current],
@@ -82,10 +82,10 @@ if get_option('run_in_ci')
8282
'compilers': [msvc_compiler_current],
8383
},
8484
'msys2': {
85-
'compilers': [gcc_14_compiler],
85+
'compilers': [gcc_15_compiler],
8686
},
8787
'linux': {
88-
'compilers': [clang_19_compiler, gcc_14_compiler],
88+
'compilers': [clang_19_compiler, gcc_15_compiler],
8989
},
9090
'darwin': {
9191
'compilers': [clang_19_compiler],

wrapper/lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 348bc05fda6d0a1056827e5c25bb0c9aa59b072b

0 commit comments

Comments
 (0)