Skip to content

Commit 02d41b8

Browse files
committed
Remove DebbugerScripts from bootstrap CLI
1 parent 7be1da0 commit 02d41b8

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

src/bootstrap/builder.rs

-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,6 @@ impl<'a> Builder<'a> {
603603
dist::RustcDocs,
604604
dist::Mingw,
605605
dist::Rustc,
606-
dist::DebuggerScripts,
607606
dist::Std,
608607
dist::RustcDev,
609608
dist::Analysis,

src/bootstrap/dist.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -456,16 +456,7 @@ impl Step for DebuggerScripts {
456456
type Output = ();
457457

458458
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
459-
run.path("src/etc/lldb_batchmode.py")
460-
}
461-
462-
fn make_run(run: RunConfig<'_>) {
463-
run.builder.ensure(DebuggerScripts {
464-
sysroot: run
465-
.builder
466-
.sysroot(run.builder.compiler(run.builder.top_stage, run.build_triple())),
467-
host: run.target,
468-
});
459+
run.never()
469460
}
470461

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

0 commit comments

Comments
 (0)