From 179a10c55bc54c2b669518678803cddd9d8865d9 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Wed, 26 Oct 2022 09:20:26 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Henry Schreiner Co-authored-by: Matthieu Darbois --- docs/faq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index c21c99c7..07a0927b 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -347,12 +347,13 @@ This is fine for simple C extensions, but for more complicated builds on arm64 i So, if the cross-compilation is an issue for you, there is an 'experimental' installer available that's built natively for arm64. -To use this installer and perform native CPython 3.8 building, before invoking cibuildwheel, install the universal2 version of Python on your arm64 runner, something like- +To use this installer and perform native CPython 3.8 building, before invoking cibuildwheel, install the universal2 version of Python on your arm64 runner, something like: ```bash curl -o /tmp/Python38.pkg https://www.python.org/ftp/python/3.8.10/python-3.8.10-macos11.pkg sudo installer -pkg /tmp/Python38.pkg -target / +sh "/Applications/Python 3.8/Install Certificates.command" ``` Then cibuildwheel will detect that it's installed and use it instead. However, you probably don't want to build x86_64 wheels on this Python, unless you're happy with them only supporting macOS 11+.