Skip to content

Commit a4c0793

Browse files
Aaron1011Mark-Simulacrum
authored andcommitted
Show nicer error when an 'unstable fingerprints' error occurs
1 parent 266f452 commit a4c0793

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

compiler/rustc_query_system/src/query/plumbing.rs

+13-7
Original file line numberDiff line numberDiff line change
@@ -605,13 +605,19 @@ fn incremental_verify_ich<CTX, K, V: Debug>(
605605

606606
let old_hash = tcx.dep_graph().prev_fingerprint_of(dep_node);
607607

608-
assert_eq!(
609-
Some(new_hash),
610-
old_hash,
611-
"found unstable fingerprints for {:?}: {:?}",
612-
dep_node,
613-
result
614-
);
608+
if Some(new_hash) != old_hash {
609+
let run_cmd = if let Some(crate_name) = &tcx.sess().opts.crate_name {
610+
format!("`cargo clean -p {}` or `cargo clean`", crate_name)
611+
} else {
612+
"`cargo clean`".to_string()
613+
};
614+
tcx.sess().struct_err(&format!("internal compiler error: encountered incremental compilation error with {:?}", dep_node))
615+
.help(&format!("This is a known issue with the compiler. Run {} to allow your project to compile", run_cmd))
616+
.note(&format!("Please follow the instructions below to create a bug report with the provided information"))
617+
.note(&format!("See <https://github.com/rust-lang/rust/issues/84970> for more information"))
618+
.emit();
619+
panic!("Found unstable fingerprints for {:?}: {:?}", dep_node, result);
620+
}
615621
}
616622

617623
fn force_query_with_job<C, CTX>(

0 commit comments

Comments
 (0)