From a85ac024982945003c92f84f546851f79f990ad4 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Sat, 30 Nov 2024 20:00:22 +0100 Subject: [PATCH] refactor: remove x86_64-pc-windows-gnu target configuration from Cross.toml Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- Cross.toml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Cross.toml b/Cross.toml index 68a0447..afdbd85 100644 --- a/Cross.toml +++ b/Cross.toml @@ -1,18 +1,6 @@ -[target.x86_64-pc-windows-gnu] -# additional commands to run prior to building the package -pre-build = [ - "dpkg --add-architecture $CROSS_DEB_ARCH", - "apt-get update && apt-get --assume-yes install nasm:$CROSS_DEB_ARCH libssl-dev:$CROSS_DEB_ARCH", -] - [target.i686-unknown-linux-gnu] image = "ghcr.io/cross-rs/i686-unknown-linux-gnu:edge" pre-build = [ "dpkg --add-architecture $CROSS_DEB_ARCH", "apt-get update && apt-get --assume-yes install gcc-multilib-i686-linux-gnu gcc-i686-linux-gnu", ] - -[target.x86_64-pc-windows-gnu.env] -passthrough = [ - "AWS_LC_SYS_PREBUILT_NASM=1", -]