// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package help import "cmd/go/internal/base" var HelpC = &base.Command{ UsageLine: "c", Short: "calling between Go and C", Long: ` There are two different ways to call between Go and C/C++ code. The first is the cgo tool, which is part of the Go distribution. For information on how to use it see the cgo documentation (go doc cmd/cgo). The second is the SWIG program, which is a general tool for interfacing between languages. For information on SWIG see https://swig.org/. When running go build, any file with a .swig extension will be passed to SWIG. Any file with a .swigcxx extension will be passed to SWIG with the -c++ option. A package can't be just a .swig or .swigcxx file; there must be at least one .go file, even if it has just a package clause. When either cgo or SWIG is used, go build will pass any .c, .m, .s, .S or .sx files to the C compiler, and any .cc, .cpp, .cxx files to the C++ compiler. The CC or CXX environment variables may be set to determine the C or C++ compiler, respectively, to use. `, } var HelpPackages = &base.Command{ UsageLine: "packages", Short: "package lists and patterns", Long: ` Many commands apply to a set of packages: go [packages] Usually, [packages] is a list of package patterns, which can take several forms: - A relative or absolute path to a file system directory, which can contain "..." wildcard elements. - An import path, which can also contain "..." wildcard elements. - A reserved name that expands to a set of packages - A list of files If no import paths are given, the action applies to the package in the current directory. "..." elements in filesystem or import paths expand to match 0 or more path elements. Specific rules are described below. File system patterns Patterns beginning with a file system root like / on Unixes, or a volume name like C: on Windows are interpreted as absolute file system paths. Patterns beginning with a "." or ".." element are interpreted as relative file system paths. File system paths denote the package contained within the given directory. Relative paths can be used as a shorthand on the command line. If you are working in the directory containing the code imported as "unicode" and want to run the tests for "unicode/utf8", you can type "go test ./utf8" instead of needing to specify the full path. Similarly, in the reverse situation, "go test .." will test "unicode" from the "unicode/utf8" directory. Relative patterns are also allowed, such as "go test ./..." to test all subdirectories. File system patterns expanded with the "..." wildcard exclude the following: - Directories named "vendor" - Directories named "testdata" - Files and directories with names beginning with "_" or "." - Directories that contain a go.mod file - Directories matching an ignore directive in a module's go.mod file These can be included by either using them in the prefix, or changing into the directories. For example, "./..." won't match a "./testdata/foo" package, but "./testdata/..." will. Directories containing other go modules, which are denoted by the presence of a go.mod file, can only be matched by changing the working directory into module. Import path patterns Patterns may be import paths as described in "go help importpath". Import path patterns natch the packages from modules in the build list. The "build list" is the list of module versions used for a build. See https://go.dev/ref/mod#glos-build-list for more details. Some commands accept versioned package patterns, such as: "example.com/my/module@v1.2.3" These describe the matching package at the given version, independent of the versions used by the current module. Import path patterns may also use a "..." wildcard, such as: "example.com/my/module/...". This can be combined with the version specifier such as: "example.com/my/module/...@latest". Import path pattern expansion with "..." depends on context: - "prefix/..." matches all packages in modules in the build list that share the prefix, even if they belong to different modules. - patterns that include a version specifier such as in "prefix/...@latest" only match packages from the module that "prefix" belongs to. Reserved names The following reserved names expand to a set of packages: - "work" expands to all packages in the main module (or workspace modules). - "tool" expands to the tools defined in the current module's go.mod file. - "all" expands to all packages in the main module (or workspace modules) and their dependencies, including dependencies needed by tests of any of those. In the legacy GOPATH mode, "all" expands to all packages found in all the GOPATH trees. - "std" expands to all the packages in the standard library and their internal libraries. - "cmd" expands to the Go repository's commands and their internal libraries. List of .go files If the pattern is a list of Go files rather than a complete package, the go command synthesizes a virtual package named "command-line-arguments" containing just the given files. In most cases, it is an error to do so (e.g. "go build main.go" or "go build *.go"). Instead prefer to operate on complete packages (directories), such as: "go build ." Package names Packages are identified by their import path. Import paths for packages in the standard library use their relative path under "$GOROOT/src". Import paths for all other packages are a combination of their module name and their relative directory path within the module. Within a program, all packages must be identified by a unique import path. Packages also have names, declared with the "package" keyword in a .go file, and used as the identifier when imported by another package. By convention, the names of importable packages match the last element of their import path, generally the name of the directory containing the package. Package names do not have to be unique within a module, but packages that share the same name can't be imported together without one of them being aliased to a different name. As the go command primarily operates on directories, all non test .go files within a directory (excluding subdirectories) should share the same package declaration. Test files may suffix their package declaration with "_test", tests in these files are compiled as a separate package and don't have access to unexported identifiers of their corresponding package. See "go help test" and "go help testflag" for details. There following package names have special meanings: - "main" denotes the top-level package in a stand-alone executable. "main" packages cannot be imported. - "documentation" indicates documentation for a non-Go program in the directory. Files in package documentation are ignored by the go command. - "_test" suffix in "*_test.go" files. These form a separate test package that only has access to the colocated package's exported identifiers. See "go doc testing" for details. For more information about import paths, see "go help importpath". `, } var HelpImportPath = &base.Command{ UsageLine: "importpath", Short: "import path syntax", Long: ` An import path is used to uniquely identify and locate a package. In general, an import path denotes either a standard library package (such as "unicode/utf8") or a package found in a module (for more details see: 'go help modules'). The standard library reserves all import paths without a dot in the first element for its packages. See "Fully-qualified import paths" below for choosing an import path for your module. The following names are reserved to be used as short module names when working locally, and in tutorials, examples, and test code. - "test" - "example" Internal packages Code in or below a directory named "internal" is importable only by code that shares the same import path above the internal directory. Here's an example directory layout of a module example.com/m: /home/user/modules/m/ go.mod (declares module example.com/m) crash/ bang/ (go code in package bang) b.go foo/ (go code in package foo) f.go bar/ (go code in package bar) x.go internal/ baz/ (go code in package baz) z.go quux/ (go code in package quux) y.go The code in z.go is imported as "example.com/m/foo/internal/baz", but that import statement can only appear in packages with the import path prefix "example.com/m/foo". The packages "example.com/m/foo", "example.com/m/foo/bar", and "example.com/m/foo/quux" can all import "foo/internal/baz", but the package "example.com/m/crash/bang" cannot. See https://go.dev/s/go14internal for details. Fully-qualified import paths A fully-qualified import path for a package not belonging to the standard library starts with the path of the module the package to which the package belongs. The module's path specifies where to obtain the source code for the module. The complete import path is formed by joining the module path with the relative directory path of a package within the module. Example: /home/user/modules/m/ go.mod (declares "module example.com/m") crash/ bang/ (importable as "example.com/m/crash/bang") b.go foo/ (importable as "example.com/m/foo") f.go bar/ (importable as "example.com/m/foo/bar") x.go As import paths without a dot in the first element are reserved by the standard library, module paths (which form the prefix of all import paths) should start with an element containing a dot, e.g. "github.com/user/repo", or "example.com/project". A module path may point directly to a code hosting service, or to a custom address that points to the code hosting service in a html meta tags. Modules may also use the reserved names "example" for documentation and "test" for testing. These modules cannot be fetched by the go command. Import paths belonging to modules hosted on common code hosting sites have special syntax: Bitbucket (Git, Mercurial) import "bitbucket.org/user/project" import "bitbucket.org/user/project/sub/directory" GitHub (Git) import "github.com/user/project" import "github.com/user/project/sub/directory" Launchpad (Bazaar) import "launchpad.net/project" import "launchpad.net/project/series" import "launchpad.net/project/series/sub/directory" import "launchpad.net/~user/project/branch" import "launchpad.net/~user/project/branch/sub/directory" IBM DevOps Services (Git) import "hub.jazz.net/git/user/project" import "hub.jazz.net/git/user/project/sub/directory" For modules hosted on other servers, import paths may either be qualified with the version control type, or the go tool can dynamically fetch the import path over https/http and discover where the code resides from a tag in the HTML. To declare the code location, an import path of the form repository.vcs/path specifies the given repository, with or without the .vcs suffix, using the named version control system, and then the path inside that repository. The supported version control systems are: Bazaar .bzr Fossil .fossil Git .git Mercurial .hg Subversion .svn For example, import "example.org/user/foo.hg" denotes the root directory of the Mercurial repository at example.org/user/foo, and import "example.org/repo.git/foo/bar" denotes the foo/bar directory of the Git repository at example.org/repo. When a version control system supports multiple protocols, each is tried in turn when downloading. For example, a Git download tries https://, then git+ssh://. By default, downloads are restricted to known secure protocols (e.g. https, ssh). To override this setting for Git downloads, the GIT_ALLOW_PROTOCOL environment variable can be set (For more details see: 'go help environment'). If the import path is not a known code hosting site and also lacks a version control qualifier, the go tool attempts to fetch the import over https/http and looks for a tag in the document's HTML . The meta tag has the form: Starting in Go 1.25, an optional subdirectory will be recognized by the go command: The import-prefix is the import path corresponding to the repository root. It must be a prefix or an exact match of the package being fetched with "go get". If it's not an exact match, another http request is made at the prefix to verify the tags match. The meta tag should appear as early in the file as possible. In particular, it should appear before any raw JavaScript or CSS, to avoid confusing the go command's restricted parser. The vcs is one of "bzr", "fossil", "git", "hg", "svn". The repo-root is the root of the version control system containing a scheme and not containing a .vcs qualifier. The subdir specifies the directory within the repo-root where the Go module's root (including its go.mod file) is located. It allows you to organize your repository with the Go module code in a subdirectory rather than directly at the repository's root. If set, all vcs tags must be prefixed with "subdir". i.e. "subdir/v1.2.3" For example, import "example.org/pkg/foo" will result in the following requests: https://example.org/pkg/foo?go-get=1 (preferred) http://example.org/pkg/foo?go-get=1 (fallback, only with use of correctly set GOINSECURE) If that page contains the meta tag the go tool will verify that https://example.org/?go-get=1 contains the same meta tag and then download the code from the Git repository at https://code.org/r/p/exproj If that page contains the meta tag the go tool will verify that https://example.org/?go-get=1 contains the same meta tag and then download the code from the "foo/subdir" subdirectory within the Git repository at https://code.org/r/p/exproj Downloaded modules are stored in the module cache. See https://go.dev/ref/mod#module-cache. An additional variant of the go-import meta tag is recognized and is preferred over those listing version control systems. That variant uses "mod" as the vcs in the content value, as in: This tag means to fetch modules with paths beginning with example.org from the module proxy available at the URL https://code.org/moduleproxy. See https://go.dev/ref/mod#goproxy-protocol for details about the proxy protocol. `, } var HelpGopath = &base.Command{ UsageLine: "gopath", Short: "GOPATH environment variable", Long: ` The GOPATH environment variable is used to change the default location to store the module cache and installed binaries, if not overridden by GOMODCACHE and GOBIN respectively. Most users don't need to explicitly set GOPATH. If the environment variable is unset, GOPATH defaults to a subdirectory named "go" in the user's home directory ($HOME/go on Unix, %USERPROFILE%\go on Windows), unless that directory holds a Go distribution. Run "go env GOPATH" to see the current GOPATH. The module cache is stored in the directory specified by GOPATH/pkg/mod. If GOMODCACHE is set, it will be used as the directory to store the module cache instead. Executables installed using 'go install' are placed in the directory specified by GOPATH/bin or, if GOBIN is set, by GOBIN. GOPATH mode The GOPATH environment variable is also used by a legacy behavior of the toolchain called GOPATH mode that allows some older projects, created before modules were introduced in Go 1.11 and never updated to use modules, to continue to build. GOPATH mode is enabled when modules are disabled, either when GO111MODULE=off, or when GO111MODULE=auto, and the working directory is not in a module or workspace. In GOPATH mode, packages are located using the GOPATH environment variable, which specifies a list of paths to search: On Unix, the value is a colon-separated string. On Windows, the value is a semicolon-separated string. On Plan 9, the value is a list. The first element of this list is used to set the default module cache and binary install directory locations as described above. See https://go.dev/wiki/SettingGOPATH to set a custom GOPATH. Each directory listed in GOPATH must have a prescribed structure: The src directory holds source code. The path below src determines the import path or executable name. The pkg directory holds installed package objects. As in the Go tree, each target operating system and architecture pair has its own subdirectory of pkg (pkg/GOOS_GOARCH). If DIR is a directory listed in the GOPATH, a package with source in DIR/src/foo/bar can be imported as "foo/bar" and has its compiled form installed to "DIR/pkg/GOOS_GOARCH/foo/bar.a". The bin directory holds compiled commands. Each command is named for its source directory, but only the final element, not the entire path. That is, the command with source in DIR/src/foo/quux is installed into DIR/bin/quux, not DIR/bin/foo/quux. The "foo/" prefix is stripped so that you can add DIR/bin to your PATH to get at the installed commands. If the GOBIN environment variable is set, commands are installed to the directory it names instead of DIR/bin. GOBIN must be an absolute path. Here's an example directory layout: GOPATH=/home/user/go /home/user/go/ src/ foo/ bar/ (go code in package bar) x.go quux/ (go code in package main) y.go bin/ quux (installed command) pkg/ linux_amd64/ foo/ bar.a (installed package object) Go searches each directory listed in GOPATH to find source code, but new packages are always downloaded into the first directory in the list. See https://go.dev/doc/code.html for an example. GOPATH mode vendor directories In GOPATH mode, code below a directory named "vendor" is importable only by code in the directory tree rooted at the parent of "vendor", and only using an import path that omits the prefix up to and including the vendor element. Here's the example from the previous section, but with the "internal" directory renamed to "vendor" and a new foo/vendor/crash/bang directory added: /home/user/go/ src/ crash/ bang/ (go code in package bang) b.go foo/ (go code in package foo) f.go bar/ (go code in package bar) x.go vendor/ crash/ bang/ (go code in package bang) b.go baz/ (go code in package baz) z.go quux/ (go code in package main) y.go The same visibility rules apply as for internal, but the code in z.go is imported as "baz", not as "foo/vendor/baz". Code in GOPATH mode vendor directories deeper in the source tree shadows code in higher directories. Within the subtree rooted at foo, an import of "crash/bang" resolves to "foo/vendor/crash/bang", not the top-level "crash/bang". Code in GOPATH mode vendor directories is not subject to GOPATH mode import path checking (see 'go help importpath'). In GOPATH mode, the default GODEBUG values built into a binary will be the same GODEBUG values as when a module specifies "godebug default=go1.20". To use different GODEBUG settings, the GODEBUG environment variable must be set to override those values. This also means that the standard library tests will not run properly with GO111MODULE=off. See https://go.dev/s/go15vendor for details. See https://go.dev/ref/mod#vendoring for details about vendoring in module mode. `, } var HelpEnvironment = &base.Command{ UsageLine: "environment", Short: "environment variables", Long: ` The go command and the tools it invokes consult environment variables for configuration. If an environment variable is unset or empty, the go command uses a sensible default setting. To see the effective setting of the variable , run 'go env '. To change the default setting, run 'go env -w ='. Defaults changed using 'go env -w' are recorded in a Go environment configuration file stored in the per-user configuration directory, as reported by os.UserConfigDir. The location of the configuration file can be changed by setting the environment variable GOENV, and 'go env GOENV' prints the effective location, but 'go env -w' cannot change the default location. See 'go help env' for details. General-purpose environment variables: GCCGO The gccgo command to run for 'go build -compiler=gccgo'. GO111MODULE Controls whether the go command runs in module-aware mode or GOPATH mode. May be "off", "on", or "auto". See https://go.dev/ref/mod#mod-commands. GOARCH The architecture, or processor, for which to compile code. Examples are amd64, 386, arm, ppc64. GOAUTH Controls authentication for go-import and HTTPS module mirror interactions. See 'go help goauth'. 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. Must be an absolute path. GOCACHEPROG A command (with optional space-separated flags) that implements an external go command build cache. See 'go doc cmd/go/internal/cacheprog'. GODEBUG Enable various debugging facilities for programs built with Go, including the go command. Cannot be set using 'go env -w'. See https://go.dev/doc/godebug for details. GOENV The location of the Go environment configuration file. Cannot be set using 'go env -w'. Setting GOENV=off in the environment disables the use of the default configuration file. GOFLAGS A space-separated list of -flag=value settings to apply to go commands by default, when the given flag is known by the current command. Each entry must be a standalone flag. Because the entries are space-separated, flag values must not contain spaces. Flags listed on the command line are applied after this list and therefore override it. GOINSECURE Comma-separated list of glob patterns (in the syntax of Go's path.Match) of module path prefixes that should always be fetched in an insecure manner. Only applies to dependencies that are being fetched directly. GOINSECURE does not disable checksum database validation. GOPRIVATE or GONOSUMDB may be used to achieve that. GOMODCACHE The directory where the go command will store downloaded modules. GOOS The operating system for which to compile code. Examples are linux, darwin, windows, netbsd. GOPATH Controls where various files are stored. See: 'go help gopath'. GOPRIVATE, GONOPROXY, GONOSUMDB Comma-separated list of glob patterns (in the syntax of Go's path.Match) of module path prefixes that should always be fetched directly or that should not be compared against the checksum database. See https://go.dev/ref/mod#private-modules. GOPROXY URL of Go module proxy. See https://go.dev/ref/mod#environment-variables and https://go.dev/ref/mod#module-proxy for details. GOROOT The root of the go tree. GOSUMDB The name of checksum database to use and optionally its public key and URL. See https://go.dev/ref/mod#authenticating. GOTMPDIR Temporary directory used by the go command and testing package. Overrides the platform-specific temporary directory such as "/tmp". The go command and testing package will write temporary source files, packages, and binaries here. GOTOOLCHAIN Controls which Go toolchain is used. See https://go.dev/doc/toolchain. GOVCS Lists version control commands that may be used with matching servers. See 'go help vcs'. GOWORK In module aware mode, use the given go.work file as a workspace file. By default or when GOWORK is "auto", the go command searches for a file named go.work in the current directory and then containing directories until one is found. If a valid go.work file is found, the modules specified will collectively be used as the main modules. If GOWORK is "off", or a go.work file is not found in "auto" mode, workspace mode is disabled. Environment variables for use with cgo: AR The command to use to manipulate library archives when building with the gccgo compiler. The default is 'ar'. CC The command to use to compile C code. CGO_CFLAGS Flags that cgo will pass to the compiler when compiling C code. CGO_CFLAGS_ALLOW A regular expression specifying additional flags to allow to appear in #cgo CFLAGS source code directives. Does not apply to the CGO_CFLAGS environment variable. CGO_CFLAGS_DISALLOW A regular expression specifying flags that must be disallowed from appearing in #cgo CFLAGS source code directives. Does not apply to the CGO_CFLAGS environment variable. CGO_CPPFLAGS, CGO_CPPFLAGS_ALLOW, CGO_CPPFLAGS_DISALLOW Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW, but for the C preprocessor. CGO_CXXFLAGS, CGO_CXXFLAGS_ALLOW, CGO_CXXFLAGS_DISALLOW Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW, but for the C++ compiler. CGO_ENABLED Whether the cgo command is supported. Either 0 or 1. CGO_FFLAGS, CGO_FFLAGS_ALLOW, CGO_FFLAGS_DISALLOW Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW, but for the Fortran compiler. CGO_LDFLAGS, CGO_LDFLAGS_ALLOW, CGO_LDFLAGS_DISALLOW Like CGO_CFLAGS, CGO_CFLAGS_ALLOW, and CGO_CFLAGS_DISALLOW, but for the linker. CXX The command to use to compile C++ code. FC The command to use to compile Fortran code. PKG_CONFIG Path to pkg-config tool. Architecture-specific environment variables: GO386 For GOARCH=386, how to implement floating point instructions. Valid values are sse2 (default), softfloat. GOAMD64 For GOARCH=amd64, the microarchitecture level for which to compile. Valid values are v1 (default), v2, v3, v4. See https://go.dev/wiki/MinimumRequirements#amd64 GOARM For GOARCH=arm, the ARM architecture for which to compile. Valid values are 5, 6, 7. When the Go tools are built on an arm system, the default value is set based on what the build system supports. When the Go tools are not built on an arm system (that is, when building a cross-compiler), the default value is 7. The value can be followed by an option specifying how to implement floating point instructions. Valid options are ,softfloat (default for 5) and ,hardfloat (default for 6 and 7). GOARM64 For GOARCH=arm64, the ARM64 architecture for which to compile. Valid values are v8.0 (default), v8.{1-9}, v9.{0-5}. The value can be followed by an option specifying extensions implemented by target hardware. Valid options are ,lse and ,crypto. Note that some extensions are enabled by default starting from a certain GOARM64 version; for example, lse is enabled by default starting from v8.1. GOMIPS For GOARCH=mips{,le}, whether to use floating point instructions. Valid values are hardfloat (default), softfloat. GOMIPS64 For GOARCH=mips64{,le}, whether to use floating point instructions. Valid values are hardfloat (default), softfloat. GOPPC64 For GOARCH=ppc64{,le}, the target ISA (Instruction Set Architecture). Valid values are power8 (default), power9, power10. GORISCV64 For GOARCH=riscv64, the RISC-V user-mode application profile for which to compile. Valid values are rva20u64 (default), rva22u64, rva23u64. See https://github.com/riscv/riscv-profiles/blob/main/src/profiles.adoc and https://github.com/riscv/riscv-profiles/blob/main/src/rva23-profile.adoc GOWASM For GOARCH=wasm, comma-separated list of experimental WebAssembly features to use. Valid values are satconv, signext. Environment variables for use with code coverage: GOCOVERDIR Directory into which to write code coverage data files generated by running a "go build -cover" binary. Special-purpose environment variables: GCCGOTOOLDIR If set, where to find gccgo tools, such as cgo. The default is based on how gccgo was configured. GOEXPERIMENT Comma-separated list of toolchain experiments to enable or disable. The list of available experiments may change arbitrarily over time. See GOROOT/src/internal/goexperiment/flags.go for currently valid values. Warning: This variable is provided for the development and testing of the Go toolchain itself. Use beyond that purpose is unsupported. GOFIPS140 The FIPS-140 cryptography mode to use when building binaries. The default is GOFIPS140=off, which makes no FIPS-140 changes at all. Other values enable FIPS-140 compliance measures and select alternate versions of the cryptography source code. See https://go.dev/doc/security/fips140 for details. GO_EXTLINK_ENABLED Whether the linker should use external linking mode when using -linkmode=auto with code that uses cgo. Set to 0 to disable external linking mode, 1 to enable it. GIT_ALLOW_PROTOCOL Defined by Git. A colon-separated list of schemes that are allowed to be used with git fetch/clone. If set, any scheme not explicitly mentioned will be considered insecure by 'go get'. Because the variable is defined by Git, the default value cannot be set using 'go env -w'. Additional information available from 'go env' but not read from the environment: GOEXE The executable file name suffix (".exe" on Windows, "" on other systems). GOGCCFLAGS A space-separated list of arguments supplied to the CC command. GOHOSTARCH The architecture (GOARCH) of the Go toolchain binaries. GOHOSTOS The operating system (GOOS) of the Go toolchain binaries. GOMOD The absolute path to the go.mod of the main module. If module-aware mode is enabled, but there is no go.mod, GOMOD will be os.DevNull ("/dev/null" on Unix-like systems, "NUL" on Windows). If module-aware mode is disabled, GOMOD will be the empty string. GOTELEMETRY The current Go telemetry mode ("off", "local", or "on"). See "go help telemetry" for more information. GOTELEMETRYDIR The directory Go telemetry data is written is written to. GOTOOLDIR The directory where the go tools (compile, cover, doc, etc...) are installed. GOVERSION The version of the installed Go tree, as reported by runtime.Version. `, } var HelpFileType = &base.Command{ UsageLine: "filetype", Short: "file types", Long: ` The go command examines the contents of a restricted set of files in each directory. It identifies which files to examine based on the extension of the file name. These extensions are: .go Go source files. .c, .h C source files. If the package uses cgo or SWIG, these will be compiled with the OS-native compiler (typically gcc); otherwise they will trigger an error. .cc, .cpp, .cxx, .hh, .hpp, .hxx C++ source files. Only useful with cgo or SWIG, and always compiled with the OS-native compiler. .m Objective-C source files. Only useful with cgo, and always compiled with the OS-native compiler. .s, .S, .sx Assembler source files. If the package uses cgo or SWIG, these will be assembled with the OS-native assembler (typically gcc (sic)); otherwise they will be assembled with the Go assembler. .swig, .swigcxx SWIG definition files. .syso System object files. Files of each of these types except .syso may contain build constraints, but the go command stops scanning for build constraints at the first item in the file that is not a blank line or //-style line comment. See the go/build package documentation for more details. `, } var HelpBuildmode = &base.Command{ UsageLine: "buildmode", Short: "build modes", Long: ` The 'go build' and 'go install' commands take a -buildmode argument which indicates which kind of object file is to be built. Currently supported values are: -buildmode=archive Build the listed non-main packages into .a files. Packages named main are ignored. -buildmode=c-archive Build the listed main package, plus all packages it imports, into a C archive file. The only callable symbols will be those functions exported using a cgo //export comment. Requires exactly one main package to be listed. -buildmode=c-shared Build the listed main package, plus all packages it imports, into a C shared library. The only callable symbols will be those functions exported using a cgo //export comment. On wasip1, this mode builds it to a WASI reactor/library, of which the callable symbols are those functions exported using a //go:wasmexport directive. Requires exactly one main package to be listed. -buildmode=default Listed main packages are built into executables and listed non-main packages are built into .a files (the default behavior). -buildmode=shared Combine all the listed non-main packages into a single shared library that will be used when building with the -linkshared option. Packages named main are ignored. -buildmode=exe Build the listed main packages and everything they import into executables. Packages not named main are ignored. -buildmode=pie Build the listed main packages and everything they import into position independent executables (PIE). Packages not named main are ignored. -buildmode=plugin Build the listed main packages, plus all packages that they import, into a Go plugin. Packages not named main are ignored. On AIX, when linking a C program that uses a Go archive built with -buildmode=c-archive, you must pass -Wl,-bnoobjreorder to the C compiler. `, } var HelpCache = &base.Command{ UsageLine: "cache", Short: "build and test caching", Long: ` The go command caches build outputs for reuse in future builds. The default location for cache data is a subdirectory named go-build in the standard user cache directory for the current operating system. The cache is safe for concurrent invocations of the go command. Setting the GOCACHE environment variable overrides this default, and running 'go env GOCACHE' prints the current cache directory. The go command periodically deletes cached data that has not been used recently. Running 'go clean -cache' deletes all cached data. The build cache correctly accounts for changes to Go source files, compilers, compiler options, and so on: cleaning the cache explicitly should not be necessary in typical use. However, the build cache does not detect changes to C libraries imported with cgo. If you have made changes to the C libraries on your system, you will need to clean the cache explicitly or else use the -a build flag (see 'go help build') to force rebuilding of packages that depend on the updated C libraries. The go command also caches successful package test results. See 'go help test' for details. Running 'go clean -testcache' removes all cached test results (but not cached build results). The go command also caches values used in fuzzing with 'go test -fuzz', specifically, values that expanded code coverage when passed to a fuzz function. These values are not used for regular building and testing, but they're stored in a subdirectory of the build cache. Running 'go clean -fuzzcache' removes all cached fuzzing values. This may make fuzzing less effective, temporarily. The GODEBUG environment variable can enable printing of debugging information about the state of the cache: GODEBUG=gocacheverify=1 causes the go command to bypass the use of any cache entries and instead rebuild everything and check that the results match existing cache entries. GODEBUG=gocachehash=1 causes the go command to print the inputs for all of the content hashes it uses to construct cache lookup keys. The output is voluminous but can be useful for debugging the cache. GODEBUG=gocachetest=1 causes the go command to print details of its decisions about whether to reuse a cached test result. `, } var HelpBuildConstraint = &base.Command{ UsageLine: "buildconstraint", Short: "build constraints", Long: ` A build constraint, also known as a build tag, is a condition under which a file should be included in the package. Build constraints are given by a line comment that begins //go:build Build constraints can also be used to downgrade the language version used to compile a file. Constraints may appear in any kind of source file (not just Go), but they must appear near the top of the file, preceded only by blank lines and other comments. These rules mean that in Go files a build constraint must appear before the package clause. To distinguish build constraints from package documentation, a build constraint should be followed by a blank line. A build constraint comment is evaluated as an expression containing build tags combined by ||, &&, and ! operators and parentheses. Operators have the same meaning as in Go. For example, the following build constraint constrains a file to build when the "linux" and "386" constraints are satisfied, or when "darwin" is satisfied and "cgo" is not: //go:build (linux && 386) || (darwin && !cgo) It is an error for a file to have more than one //go:build line. During a particular build, the following build tags are satisfied: - the target operating system, as spelled by runtime.GOOS, set with the GOOS environment variable. - the target architecture, as spelled by runtime.GOARCH, set with the GOARCH environment variable. - any architecture features, in the form GOARCH.feature (for example, "amd64.v2"), as detailed below. - "unix", if GOOS is a Unix or Unix-like system. - the compiler being used, either "gc" or "gccgo" - "cgo", if the cgo command is supported (see CGO_ENABLED in 'go help environment'). - a term for each Go major release, through the current version: "go1.1" from Go version 1.1 onward, "go1.12" from Go 1.12, and so on. - any additional tags given by the -tags flag (see 'go help build'). There are no separate build tags for beta or minor releases. If a file's name, after stripping the extension and a possible _test suffix, matches any of the following patterns: *_GOOS *_GOARCH *_GOOS_GOARCH (example: source_windows_amd64.go) where GOOS and GOARCH represent any known operating system and architecture values respectively, then the file is considered to have an implicit build constraint requiring those terms (in addition to any explicit constraints in the file). Using GOOS=android matches build tags and files as for GOOS=linux in addition to android tags and files. Using GOOS=illumos matches build tags and files as for GOOS=solaris in addition to illumos tags and files. Using GOOS=ios matches build tags and files as for GOOS=darwin in addition to ios tags and files. The defined architecture feature build tags are: - For GOARCH=386, GO386=387 and GO386=sse2 set the 386.387 and 386.sse2 build tags, respectively. - For GOARCH=amd64, GOAMD64=v1, v2, and v3 correspond to the amd64.v1, amd64.v2, and amd64.v3 feature build tags. - For GOARCH=arm, GOARM=5, 6, and 7 correspond to the arm.5, arm.6, and arm.7 feature build tags. - For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5} correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags. - For GOARCH=mips or mipsle, GOMIPS=hardfloat and softfloat correspond to the mips.hardfloat and mips.softfloat (or mipsle.hardfloat and mipsle.softfloat) feature build tags. - For GOARCH=mips64 or mips64le, GOMIPS64=hardfloat and softfloat correspond to the mips64.hardfloat and mips64.softfloat (or mips64le.hardfloat and mips64le.softfloat) feature build tags. - For GOARCH=ppc64 or ppc64le, GOPPC64=power8, power9, and power10 correspond to the ppc64.power8, ppc64.power9, and ppc64.power10 (or ppc64le.power8, ppc64le.power9, and ppc64le.power10) feature build tags. - For GOARCH=riscv64, GORISCV64=rva20u64, rva22u64 and rva23u64 correspond to the riscv64.rva20u64, riscv64.rva22u64 and riscv64.rva23u64 build tags. - For GOARCH=wasm, GOWASM=satconv and signext correspond to the wasm.satconv and wasm.signext feature build tags. For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level sets the feature build tags for all previous levels as well. For example, GOAMD64=v2 sets the amd64.v1 and amd64.v2 feature flags. This ensures that code making use of v2 features continues to compile when, say, GOAMD64=v4 is introduced. Code handling the absence of a particular feature level should use a negation: //go:build !amd64.v2 To keep a file from being considered for any build: //go:build ignore (Any other unsatisfied word will work as well, but "ignore" is conventional.) To build a file only when using cgo, and only on Linux and OS X: //go:build cgo && (linux || darwin) Such a file is usually paired with another file implementing the default functionality for other systems, which in this case would carry the constraint: //go:build !(cgo && (linux || darwin)) Naming a file dns_windows.go will cause it to be included only when building the package for Windows; similarly, math_386.s will be included only when building the package for 32-bit x86. By convention, packages with assembly implementations may provide a go-only version under the "purego" build constraint. This does not limit the use of cgo (use the "cgo" build constraint) or unsafe. For example: //go:build purego Go versions 1.16 and earlier used a different syntax for build constraints, with a "// +build" prefix. The gofmt command will add an equivalent //go:build constraint when encountering the older syntax. In modules with a Go version of 1.21 or later, if a file's build constraint has a term for a Go major release, the language version used when compiling the file will be the minimum version implied by the build constraint. `, } var HelpGoAuth = &base.Command{ UsageLine: "goauth", Short: "GOAUTH environment variable", Long: ` GOAUTH is a semicolon-separated list of authentication commands for go-import and HTTPS module mirror interactions. The default is netrc. The supported authentication commands are: off Disables authentication. netrc Uses credentials from NETRC or the .netrc file in your home directory. git dir Runs 'git credential fill' in dir and uses its credentials. The go command will run 'git credential approve/reject' to update the credential helper's cache. command Executes the given command (a space-separated argument list) and attaches the provided headers to HTTPS requests. The command must produce output in the following format: Response = { CredentialSet } . CredentialSet = URLLine { URLLine } BlankLine { HeaderLine } BlankLine . URLLine = /* URL that starts with "https://" */ '\n' . HeaderLine = /* HTTP Request header */ '\n' . BlankLine = '\n' . Example: https://example.com https://example.net/api/ Authorization: Basic https://another-example.org/ Example: Data If the server responds with any 4xx code, the go command will write the following to the program's stdin: Response = StatusLine { HeaderLine } BlankLine . StatusLine = Protocol Space Status '\n' . Protocol = /* HTTP protocol */ . Space = ' ' . Status = /* HTTP status code */ . BlankLine = '\n' . HeaderLine = /* HTTP Response's header */ '\n' . Example: HTTP/1.1 401 Unauthorized Content-Length: 19 Content-Type: text/plain; charset=utf-8 Date: Thu, 07 Nov 2024 18:43:09 GMT Note: it is safe to use net/http.ReadResponse to parse this input. Before the first HTTPS fetch, the go command will invoke each GOAUTH command in the list with no additional arguments and no input. If the server responds with any 4xx code, the go command will invoke the GOAUTH commands again with the URL as an additional command-line argument and the HTTP Response to the program's stdin. If the server responds with an error again, the fetch fails: a URL-specific GOAUTH will only be attempted once per fetch. `, } var HelpBuildJSON = &base.Command{ UsageLine: "buildjson", Short: "build -json encoding", Long: ` The 'go build', 'go install', and 'go test' commands take a -json flag that reports build output and failures as structured JSON output on standard output. The JSON stream is a newline-separated sequence of BuildEvent objects corresponding to the Go struct: type BuildEvent struct { ImportPath string Action string Output string } The ImportPath field gives the package ID of the package being built. This matches the Package.ImportPath field of go list -json and the TestEvent.FailedBuild field of go test -json. Note that it does not match TestEvent.Package. The Action field is one of the following: build-output - The toolchain printed output build-fail - The build failed The Output field is set for Action == "build-output" and is a portion of the build's output. The concatenation of the Output fields of all output events is the exact output of the build. A single event may contain one or more lines of output and there may be more than one output event for a given ImportPath. This matches the definition of the TestEvent.Output field produced by go test -json. For go test -json, this struct is designed so that parsers can distinguish interleaved TestEvents and BuildEvents by inspecting the Action field. Furthermore, as with TestEvent, parsers can simply concatenate the Output fields of all events to reconstruct the text format output, as it would have appeared from go build without the -json flag. Note that there may also be non-JSON error text on standard error, even with the -json flag. Typically, this indicates an early, serious error. Consumers should be robust to this. `, }