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 . host_target ) ;
148
146
Original file line number Diff line number Diff line change @@ -196,8 +196,6 @@ impl Step for Std {
196
196
return ;
197
197
}
198
198
199
- builder. require_submodule ( "library/stdarch" , None ) ;
200
-
201
199
let mut target_deps = builder. ensure ( StartupObjects { compiler, target } ) ;
202
200
203
201
let compiler_to_use = builder. compiler_for ( compiler. stage , compiler. host , target) ;
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ impl Build {
510
510
511
511
// Make sure we update these before gathering metadata so we don't get an error about missing
512
512
// Cargo.toml files.
513
- let rust_submodules = [ "library/backtrace" , "library/stdarch" ] ;
513
+ let rust_submodules = [ "library/backtrace" ] ;
514
514
for s in rust_submodules {
515
515
build. require_submodule (
516
516
s,
You can’t perform that action at this time.
0 commit comments