From 723852388eed2b023c7a47219ebebf722b3a7ced Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Tue, 20 Aug 2019 16:02:24 -0400 Subject: [PATCH] doc/go1.13: mention '-o ' support for 'go build' Fixes #33720 Updates #14295 Change-Id: I9cb6e02bcaccd7971057315163d8810157d465bd Reviewed-on: https://go-review.googlesource.com/c/go/+/190907 Run-TryBot: Bryan C. Mills TryBot-Result: Gobot Gobot Reviewed-by: Jay Conrod --- doc/go1.13.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/go1.13.html b/doc/go1.13.html index 71d56612a5..30ea1a5c30 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -389,6 +389,13 @@ go env -w GOSUMDB=off from the compiled executable, to improve build reproducibility.

+

+ If the -o flag passed to go build + refers to an existing directory, go build will now + write executable files within that directory for main packages + matching its package arguments. +

+

The go build flag -tags now takes a comma-separated list of build tags, to allow for multiple tags in -- 2.50.0