about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2023-10-28 18:36:18 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2023-11-02 21:03:27 +0100
commit7f6aa4422ca398a5b89eb94b91ac242566a9c8d3 (patch)
tree074aae24eeef63cf891a32998f52d136aaf4cf7f /src
parent05a84760f65ed82acb953ca71ea4c053bed0df49 (diff)
downloadrust-7f6aa4422ca398a5b89eb94b91ac242566a9c8d3.tar.gz
rust-7f6aa4422ca398a5b89eb94b91ac242566a9c8d3.zip
Add comment explaning when to uncomment the `prepare` command code
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/src/core/build_steps/test.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs
index 993aa6802fe..44e5de0fa3b 100644
--- a/src/bootstrap/src/core/build_steps/test.rs
+++ b/src/bootstrap/src/core/build_steps/test.rs
@@ -3063,6 +3063,7 @@ impl Step for CodegenCranelift {
         // FIXME handle vendoring for source tarballs before removing the --skip-test below
         let download_dir = builder.out.join("cg_clif_download");
 
+        // Uncomment the `prepare` command below once vendoring is implemented.
         /*
         let mut prepare_cargo = build_cargo();
         prepare_cargo.arg("--").arg("prepare").arg("--download-dir").arg(&download_dir);
@@ -3194,6 +3195,7 @@ impl Step for CodegenGCC {
         ));
         let _time = helpers::timeit(&builder);
 
+        // Uncomment the `prepare` command below once vendoring is implemented.
         /*
         let mut prepare_cargo = build_cargo();
         prepare_cargo.arg("--").arg("prepare");