You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #123364 - klensy:bs-mixed-types, r=albertlarsan68
bootstrap: actually allow set debuginfo-level to "line-tables-only"
I've tried to set in config.toml `rust.debuginfo-level = "line-tables-only"`, but ended with:
``` failed to parse TOML configuration 'config.toml':
data did not match any variant of untagged enum StringOrInt for key `rust.debuginfo-level`
```
Also this PR allows to set `line-directives-only` for debuginfo in config.toml too.
1. Fixes this. Alternative is remove that Deserialize and use default one:
https://github.com/rust-lang/rust/blob/0e682e9875458ebf811206a48b688e07d762d9bb/src/bootstrap/src/core/config/config.rs#L725-L728
2. Should `line-directives-only` be added too?
3. I've tried to add test to rust/src/bootstrap/src/core/config/tests.rs:
```rust
#[test]
fn rust_debuginfo() {
assert!(matches!(
parse("rust.debuginfo-level-rustc = 1").rust_debuginfo_level_rustc,
DebuginfoLevel::Limited
));
assert!(matches!(
parse("rust.debuginfo-level-rustc = \"line-tables-only\"").rust_debuginfo_level_rustc,
DebuginfoLevel::LineTablesOnly
));
}
```
But test passes before that PR too; looks like config parse tests checks something wrong? I mean, that tests check something which isn't actual bootstrap behavior.
# Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`.
520
-
# `0` - no debug info
521
-
# `1` - line tables only - sufficient to generate backtraces that include line
522
-
# information and inlined functions, set breakpoints at source code
523
-
# locations, and step through execution in a debugger.
524
-
# `2` - full debug info with variable and type information
520
+
# See https://doc.rust-lang.org/rustc/codegen-options/index.html#debuginfo for available options.
521
+
#
525
522
# Can be overridden for specific subsets of Rust code (rustc, std or tools).
526
523
# Debuginfo for tests run with compiletest is not controlled by this option
527
524
# and needs to be enabled separately with `debuginfo-level-tests`.
0 commit comments