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
I tried to install with building from source on Ubuntu 20.04.2 but can't run make chrome-build.
Any help would be highly appreciated. Thank you in advance.
The text was updated successfully, but these errors were encountered:
Having os.ReadFile be undefined, generally means your Go version is old and needs to be updated. os.ReadFile was introduced in Go 1.16 (from Feb 2021) and as you can see, the note saying module requires Go 1.19 means that's going to be the minimum version of Go you need to be able to build that portion. I'm not sure what the minimum version of Go is required for chrome-build though.
Note, I had the same problem (my Go was v1.4) and I had upgraded Go via source multiple times to get to the latest v1.23.1 and the thing is, after updating, make chrome-build was still using the older Go. Turns out 'gmake chrome-clean' wasn't enough to clear out the cached version of Go that was initially found so 'gmake chrome-build' kept trying to force the use of the older Go for me. I had to do a 'gmake clean' in order for the cached versions to be done away with and then redo ../configure in order to get it to use the newest Go I built. Hope that helps.
I tried to install with building from source on Ubuntu 20.04.2 but can't run
make chrome-build
.Any help would be highly appreciated. Thank you in advance.
The text was updated successfully, but these errors were encountered: