We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b0afe commit ff7d730Copy full SHA for ff7d730
compiler/rustc_codegen_ssa/src/back/write.rs
@@ -928,6 +928,11 @@ fn execute_copy_from_cache_work_item<B: ExtraBackendMethods>(
928
cgcx.create_dcx().emit_fatal(errors::NoSavedObjectFile { cgu_name: &module.name })
929
}),
930
);
931
+ if module_config.json_artifact_notifications {
932
+ if let Some(path) = object.as_deref() {
933
+ cgcx.create_dcx().emit_artifact_notification(path, "obj");
934
+ }
935
936
let dwarf_object =
937
module.source.saved_files.get("dwo").as_ref().and_then(|saved_dwarf_object_file| {
938
let dwarf_obj_out = cgcx
0 commit comments