We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RUSTC_IF_UNCHANGED_ALLOWED_PATHS
1 parent 72e63e3 commit a00fd7aCopy full SHA for a00fd7a
src/bootstrap/src/core/config/config.rs
@@ -37,6 +37,8 @@ use crate::utils::helpers::{self, exe, output, t};
37
///
38
/// WARNING: Be cautious when adding paths to this list. If a path that influences the compiler build
39
/// is added here, it will cause bootstrap to skip necessary rebuilds, which may lead to risky results.
40
+/// For example, "src/bootstrap" should never be included in this list as it plays a crucial role in the
41
+/// final output/compiler, which can be significantly affected by changes made to the bootstrap sources.
42
pub(crate) const RUSTC_IF_UNCHANGED_ALLOWED_PATHS: &[&str] = &[
43
":!.clang-format",
44
":!.editorconfig",
0 commit comments