1
0
mirror of https://github.com/golang/go synced 2024-11-19 16:24:45 -07:00

cmd/go: document GOTOOLDIR environment variable

Also, make the variables list sorted.

Fixes #24794

Change-Id: I55f77004b00391875d26df8e55e54d79cef168dc
Reviewed-on: https://go-review.googlesource.com/106255
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Alberto Donizetti 2018-04-11 10:50:09 +02:00
parent cf7760360e
commit 51533fdac6
2 changed files with 14 additions and 6 deletions

View File

@ -1009,6 +1009,9 @@
// Examples are amd64, 386, arm, ppc64.
// GOBIN
// The directory where 'go install' will install a command.
// GOCACHE
// The directory where the go command will store cached
// information for reuse in future builds.
// GOOS
// The operating system for which to compile code.
// Examples are linux, darwin, windows, netbsd.
@ -1022,9 +1025,10 @@
// GOTMPDIR
// The directory where the go command will write
// temporary source files, packages, and binaries.
// GOCACHE
// The directory where the go command will store
// cached information for reuse in future builds.
// GOTOOLDIR
// The directory where the go tools (compile, cover, doc, etc...)
// are installed. This is printed by go env, but setting the
// environment variable has no effect.
//
// Environment variables for use with cgo:
//

View File

@ -461,6 +461,9 @@ General-purpose environment variables:
Examples are amd64, 386, arm, ppc64.
GOBIN
The directory where 'go install' will install a command.
GOCACHE
The directory where the go command will store cached
information for reuse in future builds.
GOOS
The operating system for which to compile code.
Examples are linux, darwin, windows, netbsd.
@ -474,9 +477,10 @@ General-purpose environment variables:
GOTMPDIR
The directory where the go command will write
temporary source files, packages, and binaries.
GOCACHE
The directory where the go command will store
cached information for reuse in future builds.
GOTOOLDIR
The directory where the go tools (compile, cover, doc, etc...)
are installed. This is printed by go env, but setting the
environment variable has no effect.
Environment variables for use with cgo: