File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/bootstrap/src/core/build_steps Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1012,8 +1012,6 @@ macro_rules! tool_extended {
1012
1012
$path: expr,
1013
1013
$tool_name: expr,
1014
1014
stable = $stable: expr
1015
- $( , tool_std = $tool_std: literal) ?
1016
- $( , allow_features = $allow_features: expr) ?
1017
1015
$( , add_bins_to_sysroot = $add_bins_to_sysroot: expr) ?
1018
1016
; ) +) => {
1019
1017
$(
@@ -1059,11 +1057,11 @@ macro_rules! tool_extended {
1059
1057
compiler: $sel. compiler,
1060
1058
target: $sel. target,
1061
1059
tool: $tool_name,
1062
- mode: if false $ ( || $tool_std ) ? { Mode :: ToolStd } else { Mode :: ToolRustc } ,
1060
+ mode: Mode :: ToolRustc ,
1063
1061
path: $path,
1064
1062
extra_features: vec![ ] ,
1065
1063
source_type: SourceType :: InTree ,
1066
- allow_features: concat! ( $ ( $allow_features ) * ) ,
1064
+ allow_features: "" ,
1067
1065
cargo_args: vec![ ]
1068
1066
} ) ;
1069
1067
You can’t perform that action at this time.
0 commit comments