Skip to content

Commit 8cf5807

Browse files
jcfrhenryiii
andcommitted
fix(cross-compile): Fix download of arm64 CMake binaries
This commit fixes a regression introduced in 6674721 (feat: cross-compile to Windows ARM (#326)). It ensures the arm64 CMake binary package is downloaded when building the corresponding CMake Windows arm64 wheels. Co-authored-by: Henry Schreiner <[email protected]>
1 parent b13c95e commit 8cf5807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ if(CMakePythonDistributions_SUPERBUILD)
8080
set(binary_archive "win32_binary")
8181
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
8282
if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "ARM64" OR "$ENV{SETUPTOOLS_EXT_SUFFIX}" MATCHES arm64)
83-
set(binary_achive "winarm64_binary")
83+
set(binary_archive "winarm64_binary")
8484
else()
8585
set(binary_archive "win64_binary")
8686
endif()

0 commit comments

Comments
 (0)