@@ -161,6 +161,7 @@ pub struct Config {
161
161
pub vendor : bool ,
162
162
pub target_config : HashMap < TargetSelection , Target > ,
163
163
pub full_bootstrap : bool ,
164
+ pub bootstrap_cache_path : Option < PathBuf > ,
164
165
pub extended : bool ,
165
166
pub tools : Option < HashSet < String > > ,
166
167
pub sanitizers : bool ,
@@ -827,6 +828,7 @@ define_config! {
827
828
locked_deps: Option <bool > = "locked-deps" ,
828
829
vendor: Option <bool > = "vendor" ,
829
830
full_bootstrap: Option <bool > = "full-bootstrap" ,
831
+ bootstrap_cache_path: Option <PathBuf > = "bootstrap-cache-path" ,
830
832
extended: Option <bool > = "extended" ,
831
833
tools: Option <HashSet <String >> = "tools" ,
832
834
verbose: Option <usize > = "verbose" ,
@@ -1389,6 +1391,7 @@ impl Config {
1389
1391
locked_deps,
1390
1392
vendor,
1391
1393
full_bootstrap,
1394
+ bootstrap_cache_path,
1392
1395
extended,
1393
1396
tools,
1394
1397
verbose,
@@ -1477,6 +1480,7 @@ impl Config {
1477
1480
config. reuse = reuse. map ( PathBuf :: from) ;
1478
1481
config. submodules = submodules;
1479
1482
config. android_ndk = android_ndk;
1483
+ config. bootstrap_cache_path = bootstrap_cache_path;
1480
1484
set ( & mut config. low_priority , low_priority) ;
1481
1485
set ( & mut config. compiler_docs , compiler_docs) ;
1482
1486
set ( & mut config. library_docs_private_items , library_docs_private_items) ;
0 commit comments