From 2455176299a6a12d5bd1327dea84a5416c764991 Mon Sep 17 00:00:00 2001 From: Adam Spofford Date: Mon, 2 Oct 2023 13:51:57 -0700 Subject: [PATCH] add OpenSSL to cross build --- Cross.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Cross.toml diff --git a/Cross.toml b/Cross.toml new file mode 100644 index 00000000..1c7d286e --- /dev/null +++ b/Cross.toml @@ -0,0 +1,5 @@ +[target.x86_64-unknown-linux-musl] +pre-build = [ + "dpkg --add-architecture $CROSS_DEB_ARCH", + "apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH", +]