@@ -140,7 +140,7 @@ pub struct RustcDocs {
140140impl Step for RustcDocs {
141141 type Output = Option < GeneratedTarball > ;
142142 const DEFAULT : bool = true ;
143- const ONLY_HOSTS : bool = true ;
143+ const IS_HOST : bool = true ;
144144
145145 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
146146 let builder = run. builder ;
@@ -402,7 +402,7 @@ pub struct Rustc {
402402impl Step for Rustc {
403403 type Output = GeneratedTarball ;
404404 const DEFAULT : bool = true ;
405- const ONLY_HOSTS : bool = true ;
405+ const IS_HOST : bool = true ;
406406
407407 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
408408 run. alias ( "rustc" )
@@ -782,7 +782,7 @@ pub struct RustcDev {
782782impl Step for RustcDev {
783783 type Output = Option < GeneratedTarball > ;
784784 const DEFAULT : bool = true ;
785- const ONLY_HOSTS : bool = true ;
785+ const IS_HOST : bool = true ;
786786
787787 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
788788 run. alias ( "rustc-dev" )
@@ -1012,7 +1012,7 @@ impl Step for Src {
10121012 /// The output path of the src installer tarball
10131013 type Output = GeneratedTarball ;
10141014 const DEFAULT : bool = true ;
1015- const ONLY_HOSTS : bool = true ;
1015+ const IS_HOST : bool = true ;
10161016
10171017 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
10181018 run. alias ( "rust-src" )
@@ -1073,7 +1073,7 @@ impl Step for PlainSourceTarball {
10731073 /// Produces the location of the tarball generated
10741074 type Output = GeneratedTarball ;
10751075 const DEFAULT : bool = true ;
1076- const ONLY_HOSTS : bool = true ;
1076+ const IS_HOST : bool = true ;
10771077
10781078 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
10791079 let builder = run. builder ;
@@ -1221,7 +1221,7 @@ pub struct Cargo {
12211221impl Step for Cargo {
12221222 type Output = Option < GeneratedTarball > ;
12231223 const DEFAULT : bool = true ;
1224- const ONLY_HOSTS : bool = true ;
1224+ const IS_HOST : bool = true ;
12251225
12261226 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
12271227 let default = should_build_extended_tool ( run. builder , "cargo" ) ;
@@ -1275,7 +1275,7 @@ pub struct RustAnalyzer {
12751275impl Step for RustAnalyzer {
12761276 type Output = Option < GeneratedTarball > ;
12771277 const DEFAULT : bool = true ;
1278- const ONLY_HOSTS : bool = true ;
1278+ const IS_HOST : bool = true ;
12791279
12801280 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
12811281 let default = should_build_extended_tool ( run. builder , "rust-analyzer" ) ;
@@ -1318,7 +1318,7 @@ pub struct Clippy {
13181318impl Step for Clippy {
13191319 type Output = Option < GeneratedTarball > ;
13201320 const DEFAULT : bool = true ;
1321- const ONLY_HOSTS : bool = true ;
1321+ const IS_HOST : bool = true ;
13221322
13231323 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
13241324 let default = should_build_extended_tool ( run. builder , "clippy" ) ;
@@ -1366,7 +1366,7 @@ pub struct Miri {
13661366impl Step for Miri {
13671367 type Output = Option < GeneratedTarball > ;
13681368 const DEFAULT : bool = true ;
1369- const ONLY_HOSTS : bool = true ;
1369+ const IS_HOST : bool = true ;
13701370
13711371 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
13721372 let default = should_build_extended_tool ( run. builder , "miri" ) ;
@@ -1415,7 +1415,7 @@ pub struct CraneliftCodegenBackend {
14151415impl Step for CraneliftCodegenBackend {
14161416 type Output = Option < GeneratedTarball > ;
14171417 const DEFAULT : bool = true ;
1418- const ONLY_HOSTS : bool = true ;
1418+ const IS_HOST : bool = true ;
14191419
14201420 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
14211421 // We only want to build the cranelift backend in `x dist` if the backend was enabled
@@ -1505,7 +1505,7 @@ pub struct Rustfmt {
15051505impl Step for Rustfmt {
15061506 type Output = Option < GeneratedTarball > ;
15071507 const DEFAULT : bool = true ;
1508- const ONLY_HOSTS : bool = true ;
1508+ const IS_HOST : bool = true ;
15091509
15101510 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
15111511 let default = should_build_extended_tool ( run. builder , "rustfmt" ) ;
@@ -1550,7 +1550,7 @@ pub struct Extended {
15501550impl Step for Extended {
15511551 type Output = ( ) ;
15521552 const DEFAULT : bool = true ;
1553- const ONLY_HOSTS : bool = true ;
1553+ const IS_HOST : bool = true ;
15541554
15551555 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
15561556 let builder = run. builder ;
@@ -2286,7 +2286,7 @@ pub struct LlvmTools {
22862286
22872287impl Step for LlvmTools {
22882288 type Output = Option < GeneratedTarball > ;
2289- const ONLY_HOSTS : bool = true ;
2289+ const IS_HOST : bool = true ;
22902290 const DEFAULT : bool = true ;
22912291
22922292 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -2391,7 +2391,7 @@ pub struct LlvmBitcodeLinker {
23912391impl Step for LlvmBitcodeLinker {
23922392 type Output = Option < GeneratedTarball > ;
23932393 const DEFAULT : bool = true ;
2394- const ONLY_HOSTS : bool = true ;
2394+ const IS_HOST : bool = true ;
23952395
23962396 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
23972397 let default = should_build_extended_tool ( run. builder , "llvm-bitcode-linker" ) ;
@@ -2443,7 +2443,7 @@ pub struct RustDev {
24432443impl Step for RustDev {
24442444 type Output = Option < GeneratedTarball > ;
24452445 const DEFAULT : bool = true ;
2446- const ONLY_HOSTS : bool = true ;
2446+ const IS_HOST : bool = true ;
24472447
24482448 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
24492449 run. alias ( "rust-dev" )
@@ -2546,7 +2546,7 @@ pub struct Bootstrap {
25462546impl Step for Bootstrap {
25472547 type Output = Option < GeneratedTarball > ;
25482548 const DEFAULT : bool = false ;
2549- const ONLY_HOSTS : bool = true ;
2549+ const IS_HOST : bool = true ;
25502550
25512551 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
25522552 run. alias ( "bootstrap" )
@@ -2586,7 +2586,7 @@ pub struct BuildManifest {
25862586impl Step for BuildManifest {
25872587 type Output = GeneratedTarball ;
25882588 const DEFAULT : bool = false ;
2589- const ONLY_HOSTS : bool = true ;
2589+ const IS_HOST : bool = true ;
25902590
25912591 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
25922592 run. alias ( "build-manifest" )
@@ -2618,7 +2618,7 @@ pub struct ReproducibleArtifacts {
26182618impl Step for ReproducibleArtifacts {
26192619 type Output = Option < GeneratedTarball > ;
26202620 const DEFAULT : bool = true ;
2621- const ONLY_HOSTS : bool = true ;
2621+ const IS_HOST : bool = true ;
26222622
26232623 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
26242624 run. alias ( "reproducible-artifacts" )
0 commit comments