@Mark-Simulacrum mentioned we'd also need some work to ensure they're in dist tarballs, but it looks like they're already present:
|
// Debugger scripts |
|
builder |
|
.ensure(DebuggerScripts { sysroot: INTERNER.intern_path(image.to_owned()), host }); |
So I think this is as simple as changing
|
impl Step for DebuggerScripts { |
|
type Output = (); |
|
|
|
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> { |
|
run.path("src/lldb_batchmode.py") |
to
run.never() and deleting
Originally posted by @Mark-Simulacrum in #95906 (comment)
@Mark-Simulacrum mentioned we'd also need some work to ensure they're in dist tarballs, but it looks like they're already present:
rust/src/bootstrap/dist.rs
Lines 433 to 435 in 52ca603
So I think this is as simple as changing
rust/src/bootstrap/dist.rs
Lines 455 to 459 in 52ca603
run.never()and deletingrust/src/bootstrap/builder.rs
Line 581 in 52ca603
Originally posted by @Mark-Simulacrum in #95906 (comment)