Skip to content

Commit d8cdd54

Browse files
committed
Remove the dist.missing-tools config option
1 parent 8763f7a commit d8cdd54

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

config.example.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -852,9 +852,6 @@
852852
# on linux
853853
#src-tarball = true
854854

855-
# Whether to allow failures when building tools
856-
#missing-tools = false
857-
858855
# List of compression formats to use when generating dist tarballs. The list of
859856
# formats is provided to rust-installer, which must support all of them.
860857
#

src/bootstrap/src/core/config/config.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ pub struct Config {
305305
pub save_toolstates: Option<PathBuf>,
306306
pub print_step_timings: bool,
307307
pub print_step_rusage: bool,
308-
pub missing_tools: bool,
309308

310309
// Fallback musl-root for all targets
311310
pub musl_root: Option<PathBuf>,
@@ -901,7 +900,6 @@ define_config! {
901900
sign_folder: Option<String> = "sign-folder",
902901
upload_addr: Option<String> = "upload-addr",
903902
src_tarball: Option<bool> = "src-tarball",
904-
missing_tools: Option<bool> = "missing-tools",
905903
compression_formats: Option<Vec<String>> = "compression-formats",
906904
compression_profile: Option<String> = "compression-profile",
907905
include_mingw_linker: Option<bool> = "include-mingw-linker",
@@ -1858,7 +1856,6 @@ impl Config {
18581856
sign_folder,
18591857
upload_addr,
18601858
src_tarball,
1861-
missing_tools,
18621859
compression_formats,
18631860
compression_profile,
18641861
include_mingw_linker,
@@ -1868,7 +1865,6 @@ impl Config {
18681865
config.dist_compression_formats = compression_formats;
18691866
set(&mut config.dist_compression_profile, compression_profile);
18701867
set(&mut config.rust_dist_src, src_tarball);
1871-
set(&mut config.missing_tools, missing_tools);
18721868
set(&mut config.dist_include_mingw_linker, include_mingw_linker)
18731869
}
18741870

src/bootstrap/src/utils/change_tracker.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
101101
severity: ChangeSeverity::Warning,
102102
summary: "rust-analyzer-proc-macro-srv is no longer enabled by default. To build it, you must either enable it in the configuration or explicitly invoke it with x.py.",
103103
},
104+
ChangeInfo {
105+
change_id: 119373,
106+
severity: ChangeSeverity::Warning,
107+
summary: "Removed dist.missing-tools config options, as it has been unused for some time.",
108+
},
104109
];

0 commit comments

Comments
 (0)