cmd/go: allow to install cross-compiled binaries when GOBIN is set #57485
Labels
FeatureRequest
GoCommand
cmd/go
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
What version of Go are you using (
go version
)?What did you do?
Want to build a go tool for a different platform, but want the compiled binary to be in a directory different from my default installation directory.
What did you expect to see?
Successfully cross-compile the binary and have the result somewhere under GOBIN.
What did you see instead?
Error.
I believe the rejection of cross-compiled binary when GOBIN is set has a long history, that predates both Go modules and the recent major change in the meaning of
go install <main_package_path>@<version>
repurposed for clean tool installation. There were multiple related discussion topics (#13063 #14295 #9769) but all were closed as "FrozenDueToAge".An alternative is to support
-o
flag forgo install
orgo build <main_package>@<version>
which is under discussion in a different context. #44469.The text was updated successfully, but these errors were encountered: