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.
pull/379/head
Daniel Martí 4 years ago committed by lu4p
parent d338be9941
commit 04b4ae390e

@ -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,

Loading…
Cancel
Save