Since long I am keeping my go installation up to date by compiling from source. Today on my attempt to update from 1.14.4 to 1.15 I triggered this fatal:
GOROOT_BOOTSTRAP=/home/john/opt/go.build/ ./make.bash
Building Go cmd/dist using /home/john/opt/go.build/. (go1.14.4 linux/amd64)
# runtime
../../go.build/src/runtime/os_linux.go:276:29: internal compiler error: 'getHugePageSize': not lowered: v68, SlicePtr PTR PTR
Please file a bug report including a short program that triggers the error.
https://golang.org/issue/new
Before triggering that error I did a git fetch, git checkout go1.15 and then copied my go directory to go.build. I should have copied go to go.build before but my assumption is that the 1.15 sources and 1.14.4 binaries will do no harm to bootstrap.
Is this a known error? I couldn't find a ticket for that searching the tracker with
is:issue gethugepagesize
Shall I report a new issue?
Thank you, Johann