I am trying to do go install and rename the output with the -o flag.
go install -o bar.exe src/foo.go
But this is not an error:
flag provided but not defined: -o usage: install [build flags] [packages]
go help build shows -o as the correct build flag to rename the output binary. There is no mention that this flag is not defined for go install .
go run -o bar.exe src/foo.go does not work with the same error.
go build -o bar.exe src/foo.go works. I get bar.exe.
So is this just a documentation error, or am I missing something?
My version: go1.5 windows/386 .
Thanks.
source share