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 @@ -2031,7 +2031,6 @@ impl Step for Assemble {
2031
2031
builder. ensure ( crate :: core:: build_steps:: tool:: LlvmBitcodeLinker {
2032
2032
compiler,
2033
2033
target : target_compiler. host ,
2034
- extra_features : vec ! [ ] ,
2035
2034
} ) ;
2036
2035
let tool_exe = exe ( "llvm-bitcode-linker" , target_compiler. host ) ;
2037
2036
builder. copy_link (
Original file line number Diff line number Diff line change @@ -2354,8 +2354,7 @@ impl Step for LlvmBitcodeLinker {
2354
2354
2355
2355
builder. ensure ( compile:: Rustc :: new ( compiler, target) ) ;
2356
2356
2357
- let llbc_linker =
2358
- builder. ensure ( tool:: LlvmBitcodeLinker { compiler, target, extra_features : vec ! [ ] } ) ;
2357
+ let llbc_linker = builder. ensure ( tool:: LlvmBitcodeLinker { compiler, target } ) ;
2359
2358
2360
2359
let self_contained_bin_dir = format ! ( "lib/rustlib/{}/bin/self-contained" , target. triple) ;
2361
2360
Original file line number Diff line number Diff line change @@ -987,7 +987,6 @@ impl Step for RustAnalyzerProcMacroSrv {
987
987
pub struct LlvmBitcodeLinker {
988
988
pub compiler : Compiler ,
989
989
pub target : TargetSelection ,
990
- pub extra_features : Vec < String > ,
991
990
}
992
991
993
992
impl Step for LlvmBitcodeLinker {
@@ -1004,7 +1003,6 @@ impl Step for LlvmBitcodeLinker {
1004
1003
fn make_run ( run : RunConfig < ' _ > ) {
1005
1004
run. builder . ensure ( LlvmBitcodeLinker {
1006
1005
compiler : run. builder . compiler ( run. builder . top_stage , run. builder . config . build ) ,
1007
- extra_features : Vec :: new ( ) ,
1008
1006
target : run. target ,
1009
1007
} ) ;
1010
1008
}
@@ -1021,7 +1019,7 @@ impl Step for LlvmBitcodeLinker {
1021
1019
mode : Mode :: ToolRustc ,
1022
1020
path : "src/tools/llvm-bitcode-linker" ,
1023
1021
source_type : SourceType :: InTree ,
1024
- extra_features : self . extra_features ,
1022
+ extra_features : vec ! [ ] ,
1025
1023
allow_features : "" ,
1026
1024
cargo_args : Vec :: new ( ) ,
1027
1025
artifact_kind : ToolArtifactKind :: Binary ,
You can’t perform that action at this time.
0 commit comments