We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1154358 commit d728d27Copy full SHA for d728d27
src/bootstrap/builder.rs
@@ -1693,10 +1693,6 @@ mod __test {
1693
compiler: Compiler { host: a, stage: 1 },
1694
target: b,
1695
},
1696
- compile::Std {
1697
- compiler: Compiler { host: a, stage: 2 },
1698
- target: b,
1699
- },
1700
]
1701
);
1702
assert_eq!(
src/bootstrap/doc.rs
@@ -876,11 +876,6 @@ impl Step for UnstableBookGen {
876
fn run(self, builder: &Builder<'_>) {
877
let target = self.target;
878
879
- builder.ensure(compile::Std {
880
- compiler: builder.compiler(builder.top_stage, builder.config.build),
881
- target,
882
- });
883
-
884
builder.info(&format!("Generating unstable book md files ({})", target));
885
let out = builder.md_doc_out(target).join("unstable-book");
886
builder.create_dir(&out);
0 commit comments