We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be1da0 commit 02d41b8Copy full SHA for 02d41b8
src/bootstrap/builder.rs
@@ -603,7 +603,6 @@ impl<'a> Builder<'a> {
603
dist::RustcDocs,
604
dist::Mingw,
605
dist::Rustc,
606
- dist::DebuggerScripts,
607
dist::Std,
608
dist::RustcDev,
609
dist::Analysis,
src/bootstrap/dist.rs
@@ -456,16 +456,7 @@ impl Step for DebuggerScripts {
456
type Output = ();
457
458
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
- });
+ run.never()
469
}
470
471
/// Copies debugger scripts for `target` into the `sysroot` specified.
0 commit comments