@@ -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" )
@@ -794,7 +794,7 @@ pub struct RustcDev {
794794impl Step for RustcDev {
795795 type Output = Option < GeneratedTarball > ;
796796 const DEFAULT : bool = true ;
797- const ONLY_HOSTS : bool = true ;
797+ const IS_HOST : bool = true ;
798798
799799 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
800800 run. alias ( "rustc-dev" )
@@ -1024,7 +1024,7 @@ impl Step for Src {
10241024 /// The output path of the src installer tarball
10251025 type Output = GeneratedTarball ;
10261026 const DEFAULT : bool = true ;
1027- const ONLY_HOSTS : bool = true ;
1027+ const IS_HOST : bool = true ;
10281028
10291029 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
10301030 run. alias ( "rust-src" )
@@ -1085,7 +1085,7 @@ impl Step for PlainSourceTarball {
10851085 /// Produces the location of the tarball generated
10861086 type Output = GeneratedTarball ;
10871087 const DEFAULT : bool = true ;
1088- const ONLY_HOSTS : bool = true ;
1088+ const IS_HOST : bool = true ;
10891089
10901090 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
10911091 let builder = run. builder ;
@@ -1233,7 +1233,7 @@ pub struct Cargo {
12331233impl Step for Cargo {
12341234 type Output = Option < GeneratedTarball > ;
12351235 const DEFAULT : bool = true ;
1236- const ONLY_HOSTS : bool = true ;
1236+ const IS_HOST : bool = true ;
12371237
12381238 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
12391239 let default = should_build_extended_tool ( run. builder , "cargo" ) ;
@@ -1287,7 +1287,7 @@ pub struct RustAnalyzer {
12871287impl Step for RustAnalyzer {
12881288 type Output = Option < GeneratedTarball > ;
12891289 const DEFAULT : bool = true ;
1290- const ONLY_HOSTS : bool = true ;
1290+ const IS_HOST : bool = true ;
12911291
12921292 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
12931293 let default = should_build_extended_tool ( run. builder , "rust-analyzer" ) ;
@@ -1330,7 +1330,7 @@ pub struct Clippy {
13301330impl Step for Clippy {
13311331 type Output = Option < GeneratedTarball > ;
13321332 const DEFAULT : bool = true ;
1333- const ONLY_HOSTS : bool = true ;
1333+ const IS_HOST : bool = true ;
13341334
13351335 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
13361336 let default = should_build_extended_tool ( run. builder , "clippy" ) ;
@@ -1378,7 +1378,7 @@ pub struct Miri {
13781378impl Step for Miri {
13791379 type Output = Option < GeneratedTarball > ;
13801380 const DEFAULT : bool = true ;
1381- const ONLY_HOSTS : bool = true ;
1381+ const IS_HOST : bool = true ;
13821382
13831383 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
13841384 let default = should_build_extended_tool ( run. builder , "miri" ) ;
@@ -1428,7 +1428,7 @@ pub struct CraneliftCodegenBackend {
14281428impl Step for CraneliftCodegenBackend {
14291429 type Output = Option < GeneratedTarball > ;
14301430 const DEFAULT : bool = true ;
1431- const ONLY_HOSTS : bool = true ;
1431+ const IS_HOST : bool = true ;
14321432
14331433 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
14341434 // We only want to build the cranelift backend in `x dist` if the backend was enabled
@@ -1519,7 +1519,7 @@ pub struct Rustfmt {
15191519impl Step for Rustfmt {
15201520 type Output = Option < GeneratedTarball > ;
15211521 const DEFAULT : bool = true ;
1522- const ONLY_HOSTS : bool = true ;
1522+ const IS_HOST : bool = true ;
15231523
15241524 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
15251525 let default = should_build_extended_tool ( run. builder , "rustfmt" ) ;
@@ -1564,7 +1564,7 @@ pub struct Extended {
15641564impl Step for Extended {
15651565 type Output = ( ) ;
15661566 const DEFAULT : bool = true ;
1567- const ONLY_HOSTS : bool = true ;
1567+ const IS_HOST : bool = true ;
15681568
15691569 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
15701570 let builder = run. builder ;
@@ -2301,7 +2301,7 @@ pub struct LlvmTools {
23012301
23022302impl Step for LlvmTools {
23032303 type Output = Option < GeneratedTarball > ;
2304- const ONLY_HOSTS : bool = true ;
2304+ const IS_HOST : bool = true ;
23052305 const DEFAULT : bool = true ;
23062306
23072307 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -2406,7 +2406,7 @@ pub struct LlvmBitcodeLinker {
24062406impl Step for LlvmBitcodeLinker {
24072407 type Output = Option < GeneratedTarball > ;
24082408 const DEFAULT : bool = true ;
2409- const ONLY_HOSTS : bool = true ;
2409+ const IS_HOST : bool = true ;
24102410
24112411 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
24122412 let default = should_build_extended_tool ( run. builder , "llvm-bitcode-linker" ) ;
@@ -2458,7 +2458,7 @@ pub struct RustDev {
24582458impl Step for RustDev {
24592459 type Output = Option < GeneratedTarball > ;
24602460 const DEFAULT : bool = true ;
2461- const ONLY_HOSTS : bool = true ;
2461+ const IS_HOST : bool = true ;
24622462
24632463 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
24642464 run. alias ( "rust-dev" )
@@ -2561,7 +2561,7 @@ pub struct Bootstrap {
25612561impl Step for Bootstrap {
25622562 type Output = Option < GeneratedTarball > ;
25632563 const DEFAULT : bool = false ;
2564- const ONLY_HOSTS : bool = true ;
2564+ const IS_HOST : bool = true ;
25652565
25662566 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
25672567 run. alias ( "bootstrap" )
@@ -2601,7 +2601,7 @@ pub struct BuildManifest {
26012601impl Step for BuildManifest {
26022602 type Output = GeneratedTarball ;
26032603 const DEFAULT : bool = false ;
2604- const ONLY_HOSTS : bool = true ;
2604+ const IS_HOST : bool = true ;
26052605
26062606 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
26072607 run. alias ( "build-manifest" )
@@ -2633,7 +2633,7 @@ pub struct ReproducibleArtifacts {
26332633impl Step for ReproducibleArtifacts {
26342634 type Output = Option < GeneratedTarball > ;
26352635 const DEFAULT : bool = true ;
2636- const ONLY_HOSTS : bool = true ;
2636+ const IS_HOST : bool = true ;
26372637
26382638 fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
26392639 run. alias ( "reproducible-artifacts" )
0 commit comments