@@ -797,6 +797,11 @@ impl Config {
797
797
) ;
798
798
}
799
799
800
+ config. patch_binaries_for_nix = patch_binaries_for_nix;
801
+ config. bootstrap_cache_path = bootstrap_cache_path;
802
+ config. llvm_assertions =
803
+ toml. llvm . as_ref ( ) . is_some_and ( |llvm| llvm. assertions . unwrap_or ( false ) ) ;
804
+
800
805
config. initial_rustc = if let Some ( rustc) = rustc {
801
806
if !flags_skip_stage0_validation {
802
807
config. check_stage0_version ( & rustc, "rustc" ) ;
@@ -867,7 +872,6 @@ impl Config {
867
872
config. reuse = reuse. map ( PathBuf :: from) ;
868
873
config. submodules = submodules;
869
874
config. android_ndk = android_ndk;
870
- config. bootstrap_cache_path = bootstrap_cache_path;
871
875
set ( & mut config. low_priority , low_priority) ;
872
876
set ( & mut config. compiler_docs , compiler_docs) ;
873
877
set ( & mut config. library_docs_private_items , library_docs_private_items) ;
@@ -886,7 +890,6 @@ impl Config {
886
890
set ( & mut config. local_rebuild , local_rebuild) ;
887
891
set ( & mut config. print_step_timings , print_step_timings) ;
888
892
set ( & mut config. print_step_rusage , print_step_rusage) ;
889
- config. patch_binaries_for_nix = patch_binaries_for_nix;
890
893
891
894
config. verbose = cmp:: max ( config. verbose , flags_verbose as usize ) ;
892
895
@@ -895,9 +898,6 @@ impl Config {
895
898
896
899
config. apply_install_config ( toml. install ) ;
897
900
898
- config. llvm_assertions =
899
- toml. llvm . as_ref ( ) . is_some_and ( |llvm| llvm. assertions . unwrap_or ( false ) ) ;
900
-
901
901
let file_content = t ! ( fs:: read_to_string( config. src. join( "src/ci/channel" ) ) ) ;
902
902
let ci_channel = file_content. trim_end ( ) ;
903
903
0 commit comments