File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/tools/build-manifest/src Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ use crate::versions::{PkgType, Versions};
14
14
15
15
static HOSTS : & [ & str ] = & [
16
16
"aarch64-apple-darwin" ,
17
+ "aarch64-pc-windows-gnullvm" ,
17
18
"aarch64-pc-windows-msvc" ,
18
19
"aarch64-unknown-linux-gnu" ,
19
20
"aarch64-unknown-linux-musl" ,
@@ -44,6 +45,7 @@ static HOSTS: &[&str] = &[
44
45
"x86_64-apple-darwin" ,
45
46
"x86_64-pc-solaris" ,
46
47
"x86_64-pc-windows-gnu" ,
48
+ "x86_64-pc-windows-gnullvm" ,
47
49
"x86_64-pc-windows-msvc" ,
48
50
"x86_64-unknown-freebsd" ,
49
51
"x86_64-unknown-illumos" ,
@@ -470,7 +472,7 @@ impl Builder {
470
472
}
471
473
// so is rust-mingw if it's available for the target
472
474
PkgType :: RustMingw => {
473
- if host. contains ( "pc-windows-gnu" ) {
475
+ if host. ends_with ( "pc-windows-gnu" ) {
474
476
components. push ( host_component ( pkg) ) ;
475
477
}
476
478
}
You can’t perform that action at this time.
0 commit comments