Don't create .msi installer for gnullvm hosts

WIX toolset works only on Windows hosts and we need to boostrap this
host.
This commit is contained in:
Mateusz Mikuła 2025-05-06 18:40:18 +02:00
parent 00b526212b
commit 4f0b60aa71

View file

@ -1681,7 +1681,8 @@ impl Step for Extended {
cmd.run(builder);
}
if target.is_windows() {
// FIXME(mati865): `gnullvm` here is temporary, remove it once it can host itself
if target.is_windows() && !target.contains("gnullvm") {
let exe = tmp.join("exe");
let _ = fs::remove_dir_all(&exe);