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 0ef86e1 commit 253dbe3Copy full SHA for 253dbe3
builder/config.go
@@ -30,7 +30,7 @@ func NewConfig(options *compileopts.Options) (*compileopts.Config, error) {
30
if major != 1 || minor < 18 || minor > 21 {
31
// Note: when this gets updated, also update the Go compatibility matrix:
32
// https://github.com/tinygo-org/tinygo-site/blob/dev/content/docs/reference/go-compat-matrix.md
33
- return nil, fmt.Errorf("requires go version 1.18 through 1.20, got go%d.%d", major, minor)
+ return nil, fmt.Errorf("requires go version 1.18 through 1.21, got go%d.%d", major, minor)
34
}
35
36
clangHeaderPath := getClangHeaderPath(goenv.Get("TINYGOROOT"))
0 commit comments