@@ -17,8 +17,6 @@ define_config! {
17
17
tests: Option <bool > = "tests" ,
18
18
enzyme: Option <bool > = "enzyme" ,
19
19
plugins: Option <bool > = "plugins" ,
20
- // FIXME: Remove this field at Q2 2025, it has been replaced by build.ccache
21
- ccache: Option <StringOrBool > = "ccache" ,
22
20
static_libstdcpp: Option <bool > = "static-libstdcpp" ,
23
21
libzstd: Option <bool > = "libzstd" ,
24
22
ninja: Option <bool > = "ninja" ,
@@ -97,7 +95,6 @@ pub fn check_incompatible_options_for_ci_llvm(
97
95
assertions : _,
98
96
tests : _,
99
97
plugins,
100
- ccache : _,
101
98
static_libstdcpp : _,
102
99
libzstd,
103
100
ninja : _,
@@ -149,11 +146,7 @@ pub fn check_incompatible_options_for_ci_llvm(
149
146
}
150
147
151
148
impl Config {
152
- pub fn apply_llvm_config (
153
- & mut self ,
154
- toml_llvm : Option < Llvm > ,
155
- ccache : & mut Option < StringOrBool > ,
156
- ) {
149
+ pub fn apply_llvm_config ( & mut self , toml_llvm : Option < Llvm > ) {
157
150
let mut llvm_tests = None ;
158
151
let mut llvm_enzyme = None ;
159
152
let mut llvm_offload = None ;
@@ -168,7 +161,6 @@ impl Config {
168
161
tests,
169
162
enzyme,
170
163
plugins,
171
- ccache : llvm_ccache,
172
164
static_libstdcpp,
173
165
libzstd,
174
166
ninja,
@@ -191,13 +183,7 @@ impl Config {
191
183
download_ci_llvm,
192
184
build_config,
193
185
} = llvm;
194
- if llvm_ccache. is_some ( ) {
195
- eprintln ! ( "Warning: llvm.ccache is deprecated. Use build.ccache instead." ) ;
196
- }
197
186
198
- if ccache. is_none ( ) {
199
- * ccache = llvm_ccache;
200
- }
201
187
set ( & mut self . ninja_in_file , ninja) ;
202
188
llvm_tests = tests;
203
189
llvm_enzyme = enzyme;
0 commit comments