From 446f8f29d35d7192ef5b0b5e060e3bec60fcc7a6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Sep 2023 15:02:01 +0200 Subject: [PATCH] python/build/openssl: add Darwin archs --- python/build/openssl.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/build/openssl.py b/python/build/openssl.py index 81396ce02..790d2c00a 100644 --- a/python/build/openssl.py +++ b/python/build/openssl.py @@ -41,12 +41,16 @@ class OpenSSLProject(MakeProject): 'i686-linux-android': 'linux-x86-clang', 'x86_64-linux-android': 'linux-x86_64-clang', - # Kobo + # generic Linux 'arm-linux-gnueabihf': 'linux-generic32', # Windows 'i686-w64-mingw32': 'mingw', 'x86_64-w64-mingw32': 'mingw64', + + # Apple + 'x86_64-apple-darwin': 'darwin64-x86_64-cc', + 'aarch64-apple-darwin': 'darwin64-arm64-cc', } openssl_arch = openssl_archs[toolchain.arch]