about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2024-09-05 23:42:19 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2024-09-06 16:01:48 +0200
commit691751416e9ded004fe6aa4ede0c4ba5741a08e9 (patch)
tree6251c4fea45c8644c1f4850028b8f009c4286643
parent103e04064f223a9e684bffd7c254d3dbf13e1d15 (diff)
downloadrust-691751416e9ded004fe6aa4ede0c4ba5741a08e9.tar.gz
rust-691751416e9ded004fe6aa4ede0c4ba5741a08e9.zip
Run `download_prerequisites` before running gcc `configure`
-rw-r--r--src/bootstrap/src/core/build_steps/gcc.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/gcc.rs b/src/bootstrap/src/core/build_steps/gcc.rs
index b9be8116659..f7a88930b8d 100644
--- a/src/bootstrap/src/core/build_steps/gcc.rs
+++ b/src/bootstrap/src/core/build_steps/gcc.rs
@@ -112,6 +112,7 @@ impl Step for Gcc {
             return true;
         }
 
+        command(root.join("contrib/download_prerequisites")).current_dir(&root).run(builder);
         command(root.join("configure"))
             .current_dir(&out_dir)
             .arg("--enable-host-shared")