File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,6 @@ pub struct Build {
240
240
clippy_info : channel:: GitInfo ,
241
241
miri_info : channel:: GitInfo ,
242
242
rustfmt_info : channel:: GitInfo ,
243
- rustc_codegen_cranelift_info : channel:: GitInfo ,
244
243
in_tree_llvm_info : channel:: GitInfo ,
245
244
local_rebuild : bool ,
246
245
fail_fast : bool ,
@@ -368,8 +367,6 @@ impl Build {
368
367
let clippy_info = channel:: GitInfo :: new ( ignore_git, & src. join ( "src/tools/clippy" ) ) ;
369
368
let miri_info = channel:: GitInfo :: new ( ignore_git, & src. join ( "src/tools/miri" ) ) ;
370
369
let rustfmt_info = channel:: GitInfo :: new ( ignore_git, & src. join ( "src/tools/rustfmt" ) ) ;
371
- let rustc_codegen_cranelift_info =
372
- channel:: GitInfo :: new ( ignore_git, & src. join ( "compiler/rustc_codegen_cranelift" ) ) ;
373
370
374
371
// we always try to use git for LLVM builds
375
372
let in_tree_llvm_info = channel:: GitInfo :: new ( false , & src. join ( "src/llvm-project" ) ) ;
@@ -432,7 +429,6 @@ impl Build {
432
429
clippy_info,
433
430
miri_info,
434
431
rustfmt_info,
435
- rustc_codegen_cranelift_info,
436
432
in_tree_llvm_info,
437
433
cc : HashMap :: new ( ) ,
438
434
cxx : HashMap :: new ( ) ,
Original file line number Diff line number Diff line change @@ -89,9 +89,7 @@ impl OverlayKind {
89
89
OverlayKind :: RustAnalyzer => builder
90
90
. rust_analyzer_info
91
91
. version ( builder, & builder. release_num ( "rust-analyzer/crates/rust-analyzer" ) ) ,
92
- OverlayKind :: RustcCodegenCranelift => builder
93
- . rustc_codegen_cranelift_info
94
- . version ( builder, & builder. release_num ( "rustc_codegen_cranelift" ) ) ,
92
+ OverlayKind :: RustcCodegenCranelift => builder. rust_version ( ) ,
95
93
}
96
94
}
97
95
}
You can’t perform that action at this time.
0 commit comments