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 @@ -84,8 +84,6 @@ impl Step for Std {
84
84
return ;
85
85
}
86
86
87
- builder. require_submodule ( "library/stdarch" , None ) ;
88
-
89
87
let stage = self . custom_stage . unwrap_or ( builder. top_stage ) ;
90
88
91
89
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 . build ) ;
148
146
Original file line number Diff line number Diff line change @@ -195,8 +195,6 @@ impl Step for Std {
195
195
return ;
196
196
}
197
197
198
- builder. require_submodule ( "library/stdarch" , None ) ;
199
-
200
198
let mut target_deps = builder. ensure ( StartupObjects { compiler, target } ) ;
201
199
202
200
let compiler_to_use = builder. compiler_for ( compiler. stage , compiler. host , target) ;
Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ impl Build {
491
491
492
492
// Make sure we update these before gathering metadata so we don't get an error about missing
493
493
// Cargo.toml files.
494
- let rust_submodules = [ "library/backtrace" , "library/stdarch" ] ;
494
+ let rust_submodules = [ "library/backtrace" ] ;
495
495
for s in rust_submodules {
496
496
build. require_submodule (
497
497
s,
You can’t perform that action at this time.
0 commit comments