From 893b1824fc5b255766fb82fce748feb3ee009853 Mon Sep 17 00:00:00 2001 From: Miles Granger Date: Mon, 23 Sep 2024 14:55:12 +0200 Subject: [PATCH] debugging --- Cross.toml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Cross.toml b/Cross.toml index 2e94053f..6da60893 100644 --- a/Cross.toml +++ b/Cross.toml @@ -3,6 +3,11 @@ pre-build = [ "apt update", "apt install -y nasm" ] +[target.x86_64-unknown-linux-gnu] +pre-build = [ + "apt update", + "apt install -y nasm" +] [target.s390x-unknown-linux-gnu] pre-build = [ "apt update", @@ -13,3 +18,33 @@ pre-build = [ "apt update", "apt install -y nasm" ] +[target.aarch64-unknown-linux-gnu] +pre-build = [ + "apt update", + "apt install -y nasm" +] +[target.powerpc64le-unknown-linux-gnu] +pre-build = [ + "apt update", + "apt install -y nasm" +] +[target.armv7-unknown-linux-musleabihf] +pre-build = [ + "apt update", + "apt install -y nasm" +] +[target.armv7-unknown-linux-gnueabihf] +pre-build = [ + "apt update", + "apt install -y nasm" +] +[target.i686-unknown-linux-musl] +pre-build = [ + "apt update", + "apt install -y nasm" +] +[target.i686-unknown-linux-gnu] +pre-build = [ + "apt update", + "apt install -y nasm" +]