File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/bootstrap/src/core/config Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -962,6 +962,7 @@ define_config! {
962
962
tests: Option <bool > = "tests" ,
963
963
enzyme: Option <bool > = "enzyme" ,
964
964
plugins: Option <bool > = "plugins" ,
965
+ // FIXME: Remove this field at Q2 2025, it has been replaced by build.ccache
965
966
ccache: Option <StringOrBool > = "ccache" ,
966
967
static_libstdcpp: Option <bool > = "static-libstdcpp" ,
967
968
libzstd: Option <bool > = "libzstd" ,
@@ -2031,6 +2032,10 @@ impl Config {
2031
2032
download_ci_llvm,
2032
2033
build_config,
2033
2034
} = llvm;
2035
+ if llvm_ccache. is_some ( ) {
2036
+ eprintln ! ( "Warning: llvm.ccache is deprecated. Use build.ccache instead." ) ;
2037
+ }
2038
+
2034
2039
ccache = ccache. or ( llvm_ccache) ;
2035
2040
set ( & mut config. ninja_in_file , ninja) ;
2036
2041
llvm_tests = tests;
You can’t perform that action at this time.
0 commit comments