File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,9 @@ mod impl_ {
277
277
if target. contains ( "x86_64" ) {
278
278
tool. env . push ( ( "Platform" . into ( ) , "X64" . into ( ) ) ) ;
279
279
}
280
+ if target. contains ( "aarch64" ) {
281
+ tool. env . push ( ( "Platform" . into ( ) , "ARM64" . into ( ) ) ) ;
282
+ }
280
283
Some ( tool)
281
284
} )
282
285
. next ( )
@@ -407,6 +410,9 @@ mod impl_ {
407
410
if target. contains ( "x86_64" ) {
408
411
tool. env . push ( ( "Platform" . into ( ) , "X64" . into ( ) ) ) ;
409
412
}
413
+ if target. contains ( "aarch64" ) {
414
+ tool. env . push ( ( "Platform" . into ( ) , "ARM64" . into ( ) ) ) ;
415
+ }
410
416
tool
411
417
} )
412
418
}
@@ -810,10 +816,12 @@ mod impl_ {
810
816
"16.0" => {
811
817
find_msbuild_vs16 ( "x86_64-pc-windows-msvc" ) . is_some ( )
812
818
|| find_msbuild_vs16 ( "i686-pc-windows-msvc" ) . is_some ( )
819
+ || find_msbuild_vs16 ( "aarch64-pc-windows-msvc" ) . is_some ( )
813
820
}
814
821
"15.0" => {
815
822
find_msbuild_vs15 ( "x86_64-pc-windows-msvc" ) . is_some ( )
816
823
|| find_msbuild_vs15 ( "i686-pc-windows-msvc" ) . is_some ( )
824
+ || find_msbuild_vs15 ( "aarch64-pc-windows-msvc" ) . is_some ( )
817
825
}
818
826
"12.0" | "14.0" => LOCAL_MACHINE
819
827
. open ( & OsString :: from ( format ! (
You can’t perform that action at this time.
0 commit comments