Auto merge of #118703 - Kobzol:bootstrap-config-unused, r=onur-ozkan · rust-lang/rust@ec41761 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit ec41761
Auto merge of #118703 - Kobzol:bootstrap-config-unused, r=onur-ozkan
Remove unused bootstrap config option I tried to destructure a few of the TOML config structs to find any unused fields. I found that `Rust::run_dysmutil` field is unused. This PR uses destructuring of the `Rust` struct, to find similar unused fields in the future, and also removes the unused field. I also found one more unused field (`Dist::gpg_password_file`), it doesn't seem to be used anywhere. If you like this PR, I'll send another one that uses destructuring for all interesting TOML structs and removes that unused field. r? `@onur-ozkan`
File tree
3 files changed
lines changed
3 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -30,7 +30,7 @@ | ||
30 | 30 | # |
31 | 31 | # If `change-id` does not match the version that is currently running, |
32 | 32 | # `x.py` will prompt you to update it and check the related PR for more details. |
33 | -change-id = 117813 | |
33 | +change-id = 118703 | |
34 | 34 | |
35 | 35 | # ============================================================================= |
36 | 36 | # Tweaking how LLVM is compiled |