Remove DebbugerScripts from bootstrap CLI
This commit is contained in:
parent
7be1da0319
commit
02d41b8f0d
2 changed files with 1 additions and 11 deletions
|
@ -603,7 +603,6 @@ impl<'a> Builder<'a> {
|
||||||
dist::RustcDocs,
|
dist::RustcDocs,
|
||||||
dist::Mingw,
|
dist::Mingw,
|
||||||
dist::Rustc,
|
dist::Rustc,
|
||||||
dist::DebuggerScripts,
|
|
||||||
dist::Std,
|
dist::Std,
|
||||||
dist::RustcDev,
|
dist::RustcDev,
|
||||||
dist::Analysis,
|
dist::Analysis,
|
||||||
|
|
|
@ -456,16 +456,7 @@ impl Step for DebuggerScripts {
|
||||||
type Output = ();
|
type Output = ();
|
||||||
|
|
||||||
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
|
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
|
||||||
run.path("src/etc/lldb_batchmode.py")
|
run.never()
|
||||||
}
|
|
||||||
|
|
||||||
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,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Copies debugger scripts for `target` into the `sysroot` specified.
|
/// Copies debugger scripts for `target` into the `sysroot` specified.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue