File tree 1 file changed +10
-0
lines changed
src/bootstrap/src/core/build_steps
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -3223,6 +3223,11 @@ impl Step for CodegenCranelift {
3223
3223
return ;
3224
3224
}
3225
3225
3226
+ if builder. download_rustc ( ) {
3227
+ builder. info ( "pre-compiled/downloaded rustc detected. skipping" ) ;
3228
+ return ;
3229
+ }
3230
+
3226
3231
if !target_supports_cranelift_backend ( run. target ) {
3227
3232
builder. info ( "target not supported by rustc_codegen_cranelift. skipping" ) ;
3228
3233
return ;
@@ -3344,6 +3349,11 @@ impl Step for CodegenGCC {
3344
3349
return ;
3345
3350
}
3346
3351
3352
+ if builder. download_rustc ( ) {
3353
+ builder. info ( "pre-compiled/downloaded rustc detected. skipping" ) ;
3354
+ return ;
3355
+ }
3356
+
3347
3357
let triple = run. target . triple ;
3348
3358
let target_supported =
3349
3359
if triple. contains ( "linux" ) { triple. contains ( "x86_64" ) } else { false } ;
You can’t perform that action at this time.
0 commit comments