From e5a9635cc78538aed06a4c2c7ae80608850c9995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Miku=C5=82a?= Date: Mon, 1 Dec 2025 13:37:23 +0100 Subject: [PATCH] gnullvm hosts: add to build-manifest --- src/tools/build-manifest/src/main.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs index d646d9102ba3e..3b7ab0e2f9fba 100644 --- a/src/tools/build-manifest/src/main.rs +++ b/src/tools/build-manifest/src/main.rs @@ -30,16 +30,23 @@ static DOCS_FALLBACK: &[(&str, &str)] = &[ ]; static MSI_INSTALLERS: &[&str] = &[ + "aarch64-pc-windows-gnullvm", "aarch64-pc-windows-msvc", "i686-pc-windows-gnu", "i686-pc-windows-msvc", "x86_64-pc-windows-gnu", + "x86_64-pc-windows-gnullvm", "x86_64-pc-windows-msvc", ]; static PKG_INSTALLERS: &[&str] = &["x86_64-apple-darwin", "aarch64-apple-darwin"]; -static MINGW: &[&str] = &["i686-pc-windows-gnu", "x86_64-pc-windows-gnu"]; +static MINGW: &[&str] = &[ + "aarch64-pc-windows-gnullvm", + "i686-pc-windows-gnu", + "x86_64-pc-windows-gnu", + "x86_64-pc-windows-gnullvm", +]; static NIGHTLY_ONLY_COMPONENTS: &[PkgType] = &[PkgType::Miri, PkgType::JsonDocs, PkgType::RustcCodegenCranelift];