-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: document system setup for cross compiling between linux architectures #47175
Comments
@cherrymui, do you have any insight on building @golang/release, my understanding is that we have a native arm64 builder for macOS — should we add a builder (perhaps just a |
I don't think this is related to M1. The OP is using a linux-arm64 container. @Link512 for cross-compiling, I think you need to use a cross C compiler that targets linux/amd64. Is your gcc a cross compiler? Thanks. |
Good question, I believe that is the underlying issue. The default arm64 gcc installed by alpine linux seems to not support amd64 cross compilation. |
I'm inclined to say that this is a documentation issue: we probably ought to have instructions for setting up a cross-compiling environment on Linux. (I see https://golang.org/wiki/GccgoCrossCompilation and https://golang.org/wiki/WindowsCrossCompiling, but only third-party resources for cross-compiling from one Linux arch to another.) |
This is mentioned in the cgo documentation:
But I guess a general wiki page on cross-compilation wouldn't hurt, since many people probably wouldn't think to read the cgo doc page before trying to cross-compile. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Trying to cross compile a simple program that uses
github.com/mattn/go-sqlite3
(which requires CGO) fromlinux/arm64
tolinux/amd64
using docker on an M1 macbook, fails due to an incorrect flag passed togcc
Some extra info:
Host OS: macOS 11.4
Host processor: Apple M1
Docker desktop version:
3.5.2 (66501)
Docker engine version:
20.10.7
gcc version:
gcc (Alpine 10.3.1_git20210424) 10.3.1 20210424
The program
The dockerfile
What did you expect to see?
The compilation succeed
What did you see instead?
The text was updated successfully, but these errors were encountered: