Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/rustup-cli/self_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ tools, but otherwise, install the C++ build tools before proceeding.
"#;

static TOOLS: &'static [&'static str] =
&["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls", "cargo-clippy"];
&["rustc", "rustdoc", "cargo", "rust-lldb", "rust-gdb", "rls", "cargo-clippy",
"lldb", "lldb-mi"];

// Tools which are commonly installed by Cargo as well as rustup. We take a bit
// more care with these to ensure we don't overwrite the user's previous
Expand Down
2 changes: 2 additions & 0 deletions src/rustup-win-installer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ static TOOLS: &'static [&'static str] = &[
"rustfmt",
"cargo-fmt",
"cargo-clippy",
"lldb",
"lldb-mi",
];

#[no_mangle]
Expand Down