Skip to content

Commit 51b891c

Browse files
committed
Add a new -Z force-full-debuginfo flag
Apparently firefox depends on the current behavior that adds too much debuginfo, but that doesn't mean we need to force it on for rustc itself. Add a new unstable flag for turning it off.
1 parent 13afbda commit 51b891c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
832832
.unwrap_or_default();
833833
let split_name = split_name.to_str().unwrap();
834834

835-
// FIXME(#60020):
835+
// FIXME(#64405):
836836
//
837837
// This should actually be
838838
//
@@ -847,7 +847,11 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
847847
// the emission kind as `FullDebug`.
848848
//
849849
// See https://github.com/rust-lang/rust/issues/60020 for details.
850-
let kind = DebugEmissionKind::FullDebug;
850+
let kind = if tcx.sess.opts.unstable_opts.force_full_debuginfo {
851+
DebugEmissionKind::FullDebug
852+
} else {
853+
DebugEmissionKind::from_generic(tcx.sess.opts.debuginfo)
854+
};
851855
assert!(tcx.sess.opts.debuginfo != DebugInfo::None);
852856

853857
unsafe {

compiler/rustc_session/src/options.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1425,6 +1425,8 @@ options! {
14251425
flatten_format_args: bool = (false, parse_bool, [TRACKED],
14261426
"flatten nested format_args!() and literals into a simplified format_args!() call \
14271427
(default: no)"),
1428+
force_full_debuginfo: bool = (true, parse_bool, [TRACKED],
1429+
"force all codegen-units to have full debuginfo even for -C debuginfo=1. see #64405 (default: yes)"),
14281430
force_unstable_if_unmarked: bool = (false, parse_bool, [TRACKED],
14291431
"force all crates to be `rustc_private` unstable (default: no)"),
14301432
fuel: Option<(String, u64)> = (None, parse_optimization_fuel, [TRACKED],

0 commit comments

Comments
 (0)