We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
RemapFileNameExt::for_codegen
1 parent c5c3144 commit 5de668aCopy full SHA for 5de668a
src/debuginfo/mod.rs
@@ -84,7 +84,9 @@ impl DebugContext {
84
85
let mut dwarf = DwarfUnit::new(encoding);
86
87
- let should_remap_filepaths = tcx.sess.should_prefer_remapped_for_codegen();
+ use rustc_session::config::RemapPathScopeComponents;
88
+ let should_remap_filepaths =
89
+ tcx.sess.should_prefer_remapped(RemapPathScopeComponents::DEBUGINFO);
90
91
let producer = producer(tcx.sess);
92
let comp_dir = tcx
0 commit comments