about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-03-07 10:27:58 +0100
committerOliver Scherer <github35764891676564198441@oli-obk.de>2019-03-07 10:27:58 +0100
commite5b3ed84a032b10db0c85fcfd8baf67424cac63e (patch)
treed3635227396ca6ed99c27c1b7087c9065b21850c /src/tools
parentf22dca0a1bef4141e75326caacc3cd59f3d5be8e (diff)
downloadrust-e5b3ed84a032b10db0c85fcfd8baf67424cac63e.tar.gz
rust-e5b3ed84a032b10db0c85fcfd8baf67424cac63e.zip
Actually publish miri in the manifest
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/build-manifest/src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
index 8d87c404d0b..d44a51a9635 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -358,6 +358,7 @@ impl Builder {
         self.package("rust-src", &mut manifest.pkg, &["*"]);
         self.package("rls-preview", &mut manifest.pkg, HOSTS);
         self.package("clippy-preview", &mut manifest.pkg, HOSTS);
+        self.package("miri", &mut manifest.pkg, HOSTS);
         self.package("rustfmt-preview", &mut manifest.pkg, HOSTS);
         self.package("rust-analysis", &mut manifest.pkg, TARGETS);
         self.package("llvm-tools-preview", &mut manifest.pkg, TARGETS);
@@ -375,7 +376,7 @@ impl Builder {
                      &["rustc", "cargo", "rust-std", "rust-mingw",
                        "rust-docs", "rustfmt-preview", "clippy-preview",
                        "rls-preview", "rust-src", "llvm-tools-preview",
-                       "lldb-preview", "rust-analysis"]);
+                       "lldb-preview", "rust-analysis", "miri"]);
 
         manifest.renames.insert("rls".to_owned(), Rename { to: "rls-preview".to_owned() });
         manifest.renames.insert("rustfmt".to_owned(), Rename { to: "rustfmt-preview".to_owned() });
@@ -422,6 +423,7 @@ impl Builder {
             // weren't built
             extensions.extend(vec![
                 Component { pkg: "clippy-preview".to_string(), target: host.to_string() },
+                Component { pkg: "miri".to_string(), target: host.to_string() },
                 Component { pkg: "rls-preview".to_string(), target: host.to_string() },
                 Component { pkg: "rustfmt-preview".to_string(), target: host.to_string() },
                 Component { pkg: "llvm-tools-preview".to_string(), target: host.to_string() },