We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0f3b2 commit c2b65c6Copy full SHA for c2b65c6
src/bootstrap/src/core/config/config.rs
@@ -1574,6 +1574,12 @@ impl Config {
1574
set(&mut config.print_step_rusage, print_step_rusage);
1575
config.patch_binaries_for_nix = patch_binaries_for_nix;
1576
1577
+ // Initialize the llvm submodule if not initialized already.
1578
+ // This is required to handle download-ci-llvm properly.
1579
+ //
1580
+ // If submodules are disabled, this does nothing.
1581
+ config.update_submodule("src/llvm-project");
1582
+
1583
config.verbose = cmp::max(config.verbose, flags.verbose as usize);
1584
1585
if let Some(install) = toml.install {
0 commit comments