Closed
Description
What version of Go are you using (go version
)?
$ go version go version go1.17.7 linux/ppc64le
Also happens in all versions.
Does this issue reproduce with the latest release?
Yes.
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="ppc64le" GOBIN="" GOCACHE="/home/centos/.cache/go-build" GOENV="/home/centos/.config/go/env" GOEXE="" GOEXPERIMENT="" GOFLAGS="" GOHOSTARCH="ppc64le" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/centos/go/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/centos/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/lib/golang" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/lib/golang/pkg/tool/linux_ppc64le" GOVCS="" GOVERSION="go1.17.7" GCCGO="gccgo" GOPPC64="power8" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/dev/null" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build3945521704=/tmp/go-build -gno-record-gcc-switches"
What did you do?
In ppc64le, if you run the following code:
package main
import "runtime"
func main() {
runtime.Breakpoint()
}
you get a SIGSEGV:
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x68940]
goroutine 1 [running]:
runtime.Breakpoint(...)
/usr/lib/golang/src/runtime/proc.go:4537
main.main()
/home/centos/go/src/github.com/alexsaezm/test_go_breakpoint/main.go:6 +0x28
What did you expect to see?
A trap like in amd64.
What did you see instead?
a SIGSEGV.