A radical fork version of Go Compiler.
It's the compiler's fault, not you.
- Eliminates all concurrent map write&read panics.
export PROJECT_ROOT=$(pwd)
cd src
GOROOT_BOOTSTRAP=$PROJECT_ROOT/bin ./make.bash
windows
export GOOS=windows
export GOARCH=amd64
linux
export GOOS=linux
export GOARCH=amd64
macos
export GOOS=darwin
export GOARCH=arm64
First, check the previously installed go version.
And in release, we find a match between the minor version and the OS.
linux example
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf linux_amd64.tar.gz
If the replacement is done without problems, it should run fine.