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 {
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 ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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) ;
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments