Greetings all!
I have looked for quite awhile, and the only reference I can find to getting verbose output out of go install
is Can I get ANY debug output from the go install command? - #2 by petrus
Further, I cannot find any reference for those “build flags” (see Go Modules Reference - The Go Programming Language) outside of the example shown in the forum post above.
go help
and go help install
don’t mention them. No man entry for go. Closest I could find was wiki audean com/go/buildflags, but that’s go build
and doesn’t cover -x
or -n
.
Where did the information in that post come from?
go install -v -n -a
go install -v -x -a
Thanks!