File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
src/bootstrap/src/core/build_steps Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2061,7 +2061,6 @@ impl Step for Assemble {
2061
2061
builder. ensure ( crate :: core:: build_steps:: tool:: LlvmBitcodeLinker {
2062
2062
compiler,
2063
2063
target : target_compiler. host ,
2064
- extra_features : vec ! [ ] ,
2065
2064
} ) ;
2066
2065
let tool_exe = exe ( "llvm-bitcode-linker" , target_compiler. host ) ;
2067
2066
builder. copy_link (
Original file line number Diff line number Diff line change @@ -2374,8 +2374,7 @@ impl Step for LlvmBitcodeLinker {
2374
2374
2375
2375
builder. ensure ( compile:: Rustc :: new ( compiler, target) ) ;
2376
2376
2377
- let llbc_linker =
2378
- builder. ensure ( tool:: LlvmBitcodeLinker { compiler, target, extra_features : vec ! [ ] } ) ;
2377
+ let llbc_linker = builder. ensure ( tool:: LlvmBitcodeLinker { compiler, target } ) ;
2379
2378
2380
2379
let self_contained_bin_dir = format ! ( "lib/rustlib/{}/bin/self-contained" , target. triple) ;
2381
2380
Original file line number Diff line number Diff line change @@ -1016,7 +1016,6 @@ impl Step for RustAnalyzerProcMacroSrv {
1016
1016
pub struct LlvmBitcodeLinker {
1017
1017
pub compiler : Compiler ,
1018
1018
pub target : TargetSelection ,
1019
- pub extra_features : Vec < String > ,
1020
1019
}
1021
1020
1022
1021
impl Step for LlvmBitcodeLinker {
@@ -1033,7 +1032,6 @@ impl Step for LlvmBitcodeLinker {
1033
1032
fn make_run ( run : RunConfig < ' _ > ) {
1034
1033
run. builder . ensure ( LlvmBitcodeLinker {
1035
1034
compiler : run. builder . compiler ( run. builder . top_stage , run. builder . config . host_target ) ,
1036
- extra_features : Vec :: new ( ) ,
1037
1035
target : run. target ,
1038
1036
} ) ;
1039
1037
}
@@ -1050,7 +1048,7 @@ impl Step for LlvmBitcodeLinker {
1050
1048
mode : Mode :: ToolRustc ,
1051
1049
path : "src/tools/llvm-bitcode-linker" ,
1052
1050
source_type : SourceType :: InTree ,
1053
- extra_features : self . extra_features ,
1051
+ extra_features : vec ! [ ] ,
1054
1052
allow_features : "" ,
1055
1053
cargo_args : Vec :: new ( ) ,
1056
1054
artifact_kind : ToolArtifactKind :: Binary ,
You can’t perform that action at this time.
0 commit comments