You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Go to version 1.N+1. (Or downgrade to 1.N-1, or use any other version of Go.)
Run gopherjs.
At step 4, you'll run into problems because the gopherjs binary was built for one version of Go, but you have a different version installed.
We have a compile-time check for version mismatch, but not a runtime one. We should add one, to make the error message more helpful, instead of something unexpected like:
Uh oh!
There was an error while loading. Please reload this page.
It's possible to do the following set of steps:
go get -u github.com/gopherjs/gopherjs
.gopherjs
.At step 4, you'll run into problems because the
gopherjs
binary was built for one version of Go, but you have a different version installed.We have a compile-time check for version mismatch, but not a runtime one. We should add one, to make the error message more helpful, instead of something unexpected like:
This idea is inspired by #670.
The text was updated successfully, but these errors were encountered: