From 3fa90ea96468d561a527a186b032490a04936879 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Tue, 3 Feb 2015 16:19:05 -0800 Subject: [PATCH] cmd/go: add 9g and 9l to documentation Change-Id: I274c438ab168278dfbb34ada3ed9a7f7c66b66ef Reviewed-on: https://go-review.googlesource.com/3834 Reviewed-by: Minux Ma --- src/cmd/go/build.go | 4 ++-- src/cmd/go/doc.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go index a3916cae28c..ad44bf0975e 100644 --- a/src/cmd/go/build.go +++ b/src/cmd/go/build.go @@ -81,14 +81,14 @@ and test commands: -gccgoflags 'arg list' arguments to pass on each gccgo compiler/linker invocation. -gcflags 'arg list' - arguments to pass on each 5g, 6g, or 8g compiler invocation. + arguments to pass on each 5g, 6g, 8g, or 9g compiler invocation. -installsuffix suffix a suffix to use in the name of the package installation directory, in order to keep output separate from default builds. If using the -race flag, the install suffix is automatically set to race or, if set explicitly, has _race appended to it. -ldflags 'flag list' - arguments to pass on each 5l, 6l, or 8l linker invocation. + arguments to pass on each 5l, 6l, 8l, or 9l linker invocation. -tags 'tag list' a list of build tags to consider satisfied during the build. For more information about build tags, see the description of diff --git a/src/cmd/go/doc.go b/src/cmd/go/doc.go index 9b642019454..2f783648edb 100644 --- a/src/cmd/go/doc.go +++ b/src/cmd/go/doc.go @@ -100,14 +100,14 @@ and test commands: -gccgoflags 'arg list' arguments to pass on each gccgo compiler/linker invocation. -gcflags 'arg list' - arguments to pass on each 5g, 6g, or 8g compiler invocation. + arguments to pass on each 5g, 6g, 8g, or 9g compiler invocation. -installsuffix suffix a suffix to use in the name of the package installation directory, in order to keep output separate from default builds. If using the -race flag, the install suffix is automatically set to race or, if set explicitly, has _race appended to it. -ldflags 'flag list' - arguments to pass on each 5l, 6l, or 8l linker invocation. + arguments to pass on each 5l, 6l, 8l, or 9l linker invocation. -tags 'tag list' a list of build tags to consider satisfied during the build. For more information about build tags, see the description of