@ -19,9 +19,6 @@ import (
"go/printer"
"go/printer"
"go/token"
"go/token"
"go/types"
"go/types"
"golang.org/x/mod/module"
"golang.org/x/mod/semver"
"golang.org/x/tools/go/ast/astutil"
"io"
"io"
"io/ioutil"
"io/ioutil"
"log"
"log"
@ -34,6 +31,10 @@ import (
"time"
"time"
"unicode"
"unicode"
"golang.org/x/mod/module"
"golang.org/x/mod/semver"
"golang.org/x/tools/go/ast/astutil"
"mvdan.cc/garble/internal/literals"
"mvdan.cc/garble/internal/literals"
)
)
@ -234,13 +235,14 @@ func main1() int {
return 0
return 0
}
}
func checkGoVersion ( ) bool {
func goVersionOK ( ) bool {
const (
const (
minGoVersion = "v1.15.0"
minGoVersion = "v1.15.0"
supportedGoVersions = "1.15.x"
supportedGoVersions = "1.15.x"
gitTimeFormat = "Mon Jan 2 15:04:05 2006 -0700"
gitTimeFormat = "Mon Jan 2 15:04:05 2006 -0700"
)
)
// Go 1.15 was released on August 11th, 2020.
minGoVersionDate := time . Date ( 2020 , 8 , 11 , 0 , 0 , 0 , 0 , time . UTC )
minGoVersionDate := time . Date ( 2020 , 8 , 11 , 0 , 0 , 0 , 0 , time . UTC )
out , err := exec . Command ( "go" , "version" ) . CombinedOutput ( )
out , err := exec . Command ( "go" , "version" ) . CombinedOutput ( )
@ -265,7 +267,7 @@ How to install go: https://golang.org/doc/install
versionDate , err := time . Parse ( gitTimeFormat , date )
versionDate , err := time . Parse ( gitTimeFormat , date )
if err != nil {
if err != nil {
fmt . Printf ( `Can't recognize devel build timestamp: %v ` , err )
fmt . Printf ( "Can't recognize devel build timestamp: %v\n" , err )
return true
return true
}
}
@ -273,13 +275,13 @@ How to install go: https://golang.org/doc/install
return true
return true
}
}
fmt . Printf ( "You use the old unstable \"%s\" go version, please upgrade go to %s ", rawVersion , supportedGoVersions )
fmt . Printf ( "You use the old unstable %q Go version, please upgrade Go to %s\n ", rawVersion , supportedGoVersions )
return false
return false
}
}
version := "v" + strings . TrimPrefix ( tag , "go" )
version := "v" + strings . TrimPrefix ( tag , "go" )
if semver . Compare ( version , minGoVersion ) < 0 {
if semver . Compare ( version , minGoVersion ) < 0 {
fmt . Printf ( "Outdated go version %s is used, please upgrade go to %s ", version , supportedGoVersions )
fmt . Printf ( "Outdated Go version %q is used, please upgrade Go to %s\n ", version , supportedGoVersions )
return false
return false
}
}
@ -292,7 +294,7 @@ func mainErr(args []string) error {
case "help" :
case "help" :
flagSet . Usage ( )
flagSet . Usage ( )
case "build" , "test" :
case "build" , "test" :
if ! checkGoVersion ( ) {
if ! goVersionOK ( ) {
return nil
return nil
}
}
// Split the flags from the package arguments, since we'll need
// Split the flags from the package arguments, since we'll need