We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac216b commit a81faceCopy full SHA for a81face
builder/config.go
@@ -26,7 +26,7 @@ func NewConfig(options *compileopts.Options) (*compileopts.Config, error) {
26
return nil, fmt.Errorf("could not read version from GOROOT (%v): %v", goroot, err)
27
}
28
if major != 1 || minor < 11 || minor > 15 {
29
- return nil, fmt.Errorf("requires go version 1.11, 1.12, 1.13, 1.14, or 1.15, got go%d.%d", major, minor)
+ return nil, fmt.Errorf("requires go version 1.11 thru 1.15, got go%d.%d", major, minor)
30
31
clangHeaderPath := getClangHeaderPath(goenv.Get("TINYGOROOT"))
32
return &compileopts.Config{
0 commit comments