From 453f8f9a770794592be0eeba1bdd6b2be3fa091d Mon Sep 17 00:00:00 2001 From: Tarak Ben Youssef Date: Wed, 21 Feb 2024 09:41:14 -0600 Subject: [PATCH] update w64 binary name --- pre_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_build.sh b/pre_build.sh index e116697c9..5d3678a34 100644 --- a/pre_build.sh +++ b/pre_build.sh @@ -19,7 +19,7 @@ if [ "${GOOS}" = "linux" ]; then fi elif [ "${GOOS}" = "windows" ]; then if [ "${GOARCH}" = "amd64" ]; then - C_COMP="x86_64-w64-mingw-gcc" + C_COMP="x86_64-w64-mingw32-gcc" else { echo "arm64 on windows isn't supported"; exit 1; } fi