Merge branch 'arm64' of https://github.com/zooba/cibuildwheel into arm64

This commit is contained in:
Steve Dower
2022-06-17 16:44:34 +01:00
+3 -1
View File
@@ -178,7 +178,9 @@ def setup_python(
# To cross-compile for ARM64, we need a native CPython to run the # To cross-compile for ARM64, we need a native CPython to run the
# build, and a copy of the ARM64 import libraries ('.\libs\*.lib') # build, and a copy of the ARM64 import libraries ('.\libs\*.lib')
# for any extension modules. # for any extension modules.
python_libs_base = install_cpython(python_configuration.version, python_configuration.arch) python_libs_base = install_cpython(
python_configuration.version, python_configuration.arch
)
python_libs_base = python_libs_base.parent / "libs" python_libs_base = python_libs_base.parent / "libs"
log.step(f"Installing native Python {native_arch} for cross-compilation...") log.step(f"Installing native Python {native_arch} for cross-compilation...")
base_python = install_cpython(python_configuration.version, native_arch) base_python = install_cpython(python_configuration.version, native_arch)