From 04b4ae390e6c2b6030ec33d26201fac7d4388635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sun, 8 Aug 2021 17:01:48 +0100 Subject: [PATCH] update build and test flag list for Go 1.16 Go 1.16 just added one flag, -overlay, as documented in https://golang.org/doc/go1.16#go-command. We forgot to update these tables for 1.16, though it probably doesn't matter as this flag is pretty much only used by gopls. --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 4411d15..4dbe987 100644 --- a/main.go +++ b/main.go @@ -1610,7 +1610,7 @@ func alterTrimpath(flags []string) []string { return flagSetValue(flags, "-trimpath", sharedTempDir+"=>;"+trimpath) } -// buildFlags is obtained from 'go help build' as of Go 1.15. +// buildFlags is obtained from 'go help build' as of Go 1.16. var buildFlags = map[string]bool{ "-a": true, "-n": true, @@ -1635,10 +1635,10 @@ var buildFlags = map[string]bool{ "-tags": true, "-trimpath": true, "-toolexec": true, + "-overlay": true, } -// booleanFlags is obtained from 'go help build' and 'go help testflag' as of Go -// 1.15. +// booleanFlags is obtained from 'go help build' and 'go help testflag' as of Go 1.16. var booleanFlags = map[string]bool{ // Shared build flags. "-a": true,