Skip to content

Commit e54dd44

Browse files
hjyamauchicompnerd
authored andcommitted
Support Windows ARM64 builds.
1 parent dbca8c7 commit e54dd44

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cmake/modules/SwiftSupport.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ function(get_swift_host_arch result_var_name)
1111
set("${result_var_name}" "x86_64" PARENT_SCOPE)
1212
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64")
1313
set("${result_var_name}" "aarch64" PARENT_SCOPE)
14+
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ARM64")
15+
set("${result_var_name}" "aarch64" PARENT_SCOPE)
1416
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ppc64")
1517
set("${result_var_name}" "powerpc64" PARENT_SCOPE)
1618
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ppc64le")

0 commit comments

Comments
 (0)