File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 289
289
#debuginfo = false
290
290
291
291
# Whether or not line number debug information is emitted
292
- #debuginfo-lines = false
292
+ #debuginfo-lines = true
293
293
294
294
# Whether or not to only build debuginfo for the standard library if enabled.
295
295
# If enabled, this will not compile the compiler with debuginfo, just the
Original file line number Diff line number Diff line change @@ -625,13 +625,11 @@ impl Config {
625
625
let default = true ;
626
626
config. rust_optimize = optimize. unwrap_or ( default) ;
627
627
628
- let default = match & config. channel [ ..] {
629
- "stable" | "beta" | "nightly" => true ,
630
- _ => false ,
631
- } ;
632
628
config. rust_debuginfo_lines = debuginfo_lines. unwrap_or ( default) ;
629
+
630
+ let default = false ;
633
631
config. rust_debuginfo_only_std = debuginfo_only_std. unwrap_or ( default) ;
634
- config. rust_debuginfo_tools = debuginfo_tools. unwrap_or ( false ) ;
632
+ config. rust_debuginfo_tools = debuginfo_tools. unwrap_or ( default ) ;
635
633
636
634
let default = debug == Some ( true ) ;
637
635
config. rust_debuginfo = debuginfo. unwrap_or ( default) ;
You can’t perform that action at this time.
0 commit comments