Skip to content

Commit

Permalink
Remove DebbugerScripts from bootstrap CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
bertptrs committed May 2, 2022
1 parent 7be1da0 commit 02d41b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
1 change: 0 additions & 1 deletion src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,6 @@ impl<'a> Builder<'a> {
dist::RustcDocs,
dist::Mingw,
dist::Rustc,
dist::DebuggerScripts,
dist::Std,
dist::RustcDev,
dist::Analysis,
Expand Down
11 changes: 1 addition & 10 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,16 +456,7 @@ impl Step for DebuggerScripts {
type Output = ();

fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
run.path("src/etc/lldb_batchmode.py")
}

fn make_run(run: RunConfig<'_>) {
run.builder.ensure(DebuggerScripts {
sysroot: run
.builder
.sysroot(run.builder.compiler(run.builder.top_stage, run.build_triple())),
host: run.target,
});
run.never()
}

/// Copies debugger scripts for `target` into the `sysroot` specified.
Expand Down

0 comments on commit 02d41b8

Please sign in to comment.