File tree Expand file tree Collapse file tree 4 files changed +1
-7
lines changed Expand file tree Collapse file tree 4 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,6 @@ impl Step for Std {
67
67
return ;
68
68
}
69
69
70
- builder. require_submodule ( "library/stdarch" , None ) ;
71
-
72
70
let stage = self . custom_stage . unwrap_or ( builder. top_stage ) ;
73
71
74
72
let target = self . target ;
Original file line number Diff line number Diff line change @@ -141,8 +141,6 @@ impl Step for Std {
141
141
}
142
142
143
143
fn run ( self , builder : & Builder < ' _ > ) {
144
- builder. require_submodule ( "library/stdarch" , None ) ;
145
-
146
144
let target = self . target ;
147
145
let compiler = builder. compiler ( builder. top_stage , builder. config . host_target ) ;
148
146
Original file line number Diff line number Diff line change @@ -197,8 +197,6 @@ impl Step for Std {
197
197
return ;
198
198
}
199
199
200
- builder. require_submodule ( "library/stdarch" , None ) ;
201
-
202
200
let mut target_deps = builder. ensure ( StartupObjects { compiler, target } ) ;
203
201
204
202
let compiler_to_use = builder. compiler_for ( compiler. stage , compiler. host , target) ;
Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ impl Build {
518
518
519
519
// Make sure we update these before gathering metadata so we don't get an error about missing
520
520
// Cargo.toml files.
521
- let rust_submodules = [ "library/backtrace" , "library/stdarch" ] ;
521
+ let rust_submodules = [ "library/backtrace" ] ;
522
522
for s in rust_submodules {
523
523
build. require_submodule (
524
524
s,
You can’t perform that action at this time.
0 commit comments