From 94af199c49ee3475e7d8198bda5d7910359ab705 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Sep 2023 15:31:20 +0200 Subject: [PATCH] python/build/openssl: add --cross-compile-prefix=... --- python/build/openssl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/build/openssl.py b/python/build/openssl.py index a266db389..154658e33 100644 --- a/python/build/openssl.py +++ b/python/build/openssl.py @@ -74,6 +74,7 @@ class OpenSSLProject(MakeProject): if toolchain.host_triplet is not None: configure.append(openssl_archs[toolchain.host_triplet]) + configure.append(f'--cross-compile-prefix={toolchain.host_triplet}-') subprocess.check_call(configure, cwd=src, env=toolchain.env) self.build_make(toolchain, src)