aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2025-04-06 10:58:31 +0200
committerJakob Unterwurzacher2025-04-06 10:59:23 +0200
commit4551e4f8edc13aeb95f1fa372ce3bd8a0e9cba4b (patch)
treeaed7ef669332102376ff920acd112e24c7406bd0
parent0cf67b6aa9398447d1d97e0e4db22cce5135aa67 (diff)
crossbuild.sh: also build on intel 32 bit (386)
https://github.com/rfjakob/gocryptfs/issues/907
-rwxr-xr-xcrossbuild.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/crossbuild.bash b/crossbuild.bash
index 0d9d7be..ff773ec 100755
--- a/crossbuild.bash
+++ b/crossbuild.bash
@@ -18,6 +18,7 @@ set -eux
export CGO_ENABLED=0
GOOS=linux GOARCH=amd64 build
+GOOS=linux GOARCH=386 build
# See https://go.dev/wiki/GoArm
GOOS=linux GOARCH=arm GOARM=7 build