From 8cf580792394a368d40fee022c443f8d2359ba3f Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 7 Jun 2023 15:00:51 -0400 Subject: [PATCH] fix(cross-compile): Fix download of arm64 CMake binaries This commit fixes a regression introduced in 6674721c1 (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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a3a1347e..2fa5ff2c1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,7 +80,7 @@ if(CMakePythonDistributions_SUPERBUILD) set(binary_archive "win32_binary") if(CMAKE_SIZEOF_VOID_P EQUAL 8) if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "ARM64" OR "$ENV{SETUPTOOLS_EXT_SUFFIX}" MATCHES arm64) - set(binary_achive "winarm64_binary") + set(binary_archive "winarm64_binary") else() set(binary_archive "win64_binary") endif()