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
The ARM support of runtime/cgo has recently been added. But "GOARCH=arm
./all.bash" will fail.
The package runtime/cgo is the only package requires ARM targeted gcc in this scheme.
Now we can have 5a, 5g, 5l, but without runtime/cgo in the scheme of
"GOARCH=arm", thus we can't use 5a, 5g, 5l with ARM targeted cgo from in our
host like amd64.
The text was updated successfully, but these errors were encountered:
I once tried to build Go from source by specifying "GOARCh=arm GOHOSTARCH=arm
CC=android-gcc", which the android-gcc is just a bash script wrapper for Android NDK's
ARM gcc. In these way, all those go tools/cmds can be built successfully(with some
modification on the golang sources), and also the runtime/cgo package, except the final
stage that requiring the HOST-built go tools to rebuild all go stuffs, it failed because
I'm using an amd64 host, but now GOHOSTARCM=arm has made a arm version for those go
tools.
by duzy.chan:
The text was updated successfully, but these errors were encountered: