From 34170cfa62df5443a0d8675106c553efec035687 Mon Sep 17 00:00:00 2001 From: lukeflo Date: Tue, 7 Oct 2025 08:30:35 +0200 Subject: add Cross.toml for cross compilation --- Cross.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Cross.toml (limited to 'Cross.toml') diff --git a/Cross.toml b/Cross.toml new file mode 100644 index 0000000..e7cd27b --- /dev/null +++ b/Cross.toml @@ -0,0 +1,11 @@ +[target.aarch64-unknown-linux-gnu] +pre-build = [ + "dpkg --add-architecture $CROSS_DEB_ARCH", + "apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH", +] + +[target.aarch64-unknown-linux-musl] +pre-build = [ + "dpkg --add-architecture $CROSS_DEB_ARCH", + "apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH", +] -- cgit v1.2.3