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.
The official Go release documentation says these should be perfectly valid targets. However, gox silently ignores the first three targets. No error emits to the console. No non-zero status code reports. Neither does gox actually produce the desired binaries.
I'm not even using cgo. This is Hello World I'm trying to port.
The text was updated successfully, but these errors were encountered:
mcandre
changed the title
gox silently ignores certain targets
gox silently ignores unregistered targets
Aug 18, 2021
I know this is a kind of a late response but better than nothing I guess😁
The issue is that gox doesn't know any targets that are newer than Go 1.6, but yes, it's a good idea that it should at least output something when it doesn't know the target.
I did try to add new targets to my fork, since I needed them, you can try it out, it may help you.
I'll also try to add message when the target is not known by gox.
Hi, I am configuring gox to output:
linux/riscv
)windows/arm64
)freebsd/arm64
)The official Go release documentation says these should be perfectly valid targets. However, gox silently ignores the first three targets. No error emits to the console. No non-zero status code reports. Neither does gox actually produce the desired binaries.
I'm not even using cgo. This is Hello World I'm trying to port.
The text was updated successfully, but these errors were encountered: