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 Aug 21, 2021. It is now read-only.
Now that AWS has A1 instances, it would be neat if we could include those in our docker host cluster. That would require being able to create multiarch docker images, which would require cross-compiling to ARM.
Normally, cross compilation in Go is pretty easy; it's just a matter of passing GOARCH at build time. However OpenRelay has some C dependencies that don't work with GOARCH. I've been able to get a build up using xgo (https://github.com/karalabe/xgo), but integrating that into our build process seems cumbersome and likely slow.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Now that AWS has A1 instances, it would be neat if we could include those in our docker host cluster. That would require being able to create multiarch docker images, which would require cross-compiling to ARM.
Normally, cross compilation in Go is pretty easy; it's just a matter of passing GOARCH at build time. However OpenRelay has some C dependencies that don't work with GOARCH. I've been able to get a build up using xgo (https://github.com/karalabe/xgo), but integrating that into our build process seems cumbersome and likely slow.
The text was updated successfully, but these errors were encountered: