We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e663819 commit a1a6fd7Copy full SHA for a1a6fd7
src/bootstrap/src/core/config/config.rs
@@ -962,6 +962,7 @@ define_config! {
962
tests: Option<bool> = "tests",
963
enzyme: Option<bool> = "enzyme",
964
plugins: Option<bool> = "plugins",
965
+ // FIXME: Remove this field at Q2 2025, it has been replaced by build.ccache
966
ccache: Option<StringOrBool> = "ccache",
967
static_libstdcpp: Option<bool> = "static-libstdcpp",
968
libzstd: Option<bool> = "libzstd",
@@ -2031,6 +2032,10 @@ impl Config {
2031
2032
download_ci_llvm,
2033
build_config,
2034
} = llvm;
2035
+ if llvm_ccache.is_some() {
2036
+ eprintln!("Warning: llvm.ccache is deprecated. Use build.ccache instead.");
2037
+ }
2038
+
2039
ccache = ccache.or(llvm_ccache);
2040
set(&mut config.ninja_in_file, ninja);
2041
llvm_tests = tests;
0 commit comments