diff options
author | Jakob Unterwurzacher | 2025-04-06 10:58:31 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-04-06 10:59:23 +0200 |
commit | 4551e4f8edc13aeb95f1fa372ce3bd8a0e9cba4b (patch) | |
tree | aed7ef669332102376ff920acd112e24c7406bd0 | |
parent | 0cf67b6aa9398447d1d97e0e4db22cce5135aa67 (diff) |
crossbuild.sh: also build on intel 32 bit (386)
https://github.com/rfjakob/gocryptfs/issues/907
-rwxr-xr-x | crossbuild.bash | 1 |
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 |