Skip to content

Commit e824005

Browse files
committed
Remove stdarch submodule checkout
1 parent e433101 commit e824005

File tree

4 files changed

+1
-7
lines changed

4 files changed

+1
-7
lines changed

src/bootstrap/src/core/build_steps/check.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ impl Step for Std {
6767
return;
6868
}
6969

70-
builder.require_submodule("library/stdarch", None);
71-
7270
let stage = self.custom_stage.unwrap_or(builder.top_stage);
7371

7472
let target = self.target;

src/bootstrap/src/core/build_steps/clippy.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,6 @@ impl Step for Std {
141141
}
142142

143143
fn run(self, builder: &Builder<'_>) {
144-
builder.require_submodule("library/stdarch", None);
145-
146144
let target = self.target;
147145
let compiler = builder.compiler(builder.top_stage, builder.config.host_target);
148146

src/bootstrap/src/core/build_steps/compile.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,6 @@ impl Step for Std {
197197
return;
198198
}
199199

200-
builder.require_submodule("library/stdarch", None);
201-
202200
let mut target_deps = builder.ensure(StartupObjects { compiler, target });
203201

204202
let compiler_to_use = builder.compiler_for(compiler.stage, compiler.host, target);

src/bootstrap/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ impl Build {
518518

519519
// Make sure we update these before gathering metadata so we don't get an error about missing
520520
// Cargo.toml files.
521-
let rust_submodules = ["library/backtrace", "library/stdarch"];
521+
let rust_submodules = ["library/backtrace"];
522522
for s in rust_submodules {
523523
build.require_submodule(
524524
s,

0 commit comments

Comments
 (0)