@@ -17,8 +17,6 @@ define_config! {
1717 tests: Option <bool > = "tests" ,
1818 enzyme: Option <bool > = "enzyme" ,
1919 plugins: Option <bool > = "plugins" ,
20- // FIXME: Remove this field at Q2 2025, it has been replaced by build.ccache
21- ccache: Option <StringOrBool > = "ccache" ,
2220 static_libstdcpp: Option <bool > = "static-libstdcpp" ,
2321 libzstd: Option <bool > = "libzstd" ,
2422 ninja: Option <bool > = "ninja" ,
@@ -97,7 +95,6 @@ pub fn check_incompatible_options_for_ci_llvm(
9795 assertions : _,
9896 tests : _,
9997 plugins,
100- ccache : _,
10198 static_libstdcpp : _,
10299 libzstd,
103100 ninja : _,
@@ -149,11 +146,7 @@ pub fn check_incompatible_options_for_ci_llvm(
149146}
150147
151148impl 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 > ) {
157150 let mut llvm_tests = None ;
158151 let mut llvm_enzyme = None ;
159152 let mut llvm_offload = None ;
@@ -168,7 +161,6 @@ impl Config {
168161 tests,
169162 enzyme,
170163 plugins,
171- ccache : llvm_ccache,
172164 static_libstdcpp,
173165 libzstd,
174166 ninja,
@@ -191,13 +183,7 @@ impl Config {
191183 download_ci_llvm,
192184 build_config,
193185 } = llvm;
194- if llvm_ccache. is_some ( ) {
195- eprintln ! ( "Warning: llvm.ccache is deprecated. Use build.ccache instead." ) ;
196- }
197186
198- if ccache. is_none ( ) {
199- * ccache = llvm_ccache;
200- }
201187 set ( & mut self . ninja_in_file , ninja) ;
202188 llvm_tests = tests;
203189 llvm_enzyme = enzyme;
0 commit comments