You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I can confirm that I get automatic cross compiles for linux arm. This list of releases was automatically built by gox. The command I used is visible here -- I'm just setting a custom output path, that's it.
I have even verified this works just fine on a raspberry pi running raspbian.
@danesparza The ARMv5 architecture is different from the ARMv6 architecture. If you use
$ GOOS=linux GOARCH=arm GOARM=6 go build
You'll get a different binary from
$ GOOS=linux GOARCH=arm GOARM=5 go build
In your list I can't tell which architecture it's for. Have you tried running your builds on different arm systems? Looking at your list of builds I can't tell which architecture your arm build is for.
This means that gox can't compile binaries for raspberry pi. The pi needs
It would be awesome if you could say
gox -osarch="linux/arm/6"
or something similar.The text was updated successfully, but these errors were encountered: