aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_netbsd_amd64.go
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2020-09-28 10:11:06 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2020-09-28 22:28:06 +0000
commit1f4d035178d2d792a74b6b872f6a213bf5fd9326 (patch)
tree90e8a0ab98d753ae297d5802c095c56290fc2307 /src/runtime/os_netbsd_amd64.go
parentaf18bce87cc7ee1ffc68f91abefa241ab209539e (diff)
downloadgo-1f4d035178d2d792a74b6b872f6a213bf5fd9326.tar.gz
go-1f4d035178d2d792a74b6b872f6a213bf5fd9326.zip
runtime: initialise cpu.HWCap on netbsd/arm64
NetBSD does not supply AT_HWCAP, however we still need to initialise cpu.HWCaps. For now specify the bare minimum until we add some form of capabilities detection. See https://golang.org/issue/30824#issuecomment-494901591 Follows CL 174129 which did the same for openbsd/arm64. Updates #30824 Change-Id: I43a86b583bc60d259a66772703de06970124bb7f Reviewed-on: https://go-review.googlesource.com/c/go/+/257998 Trust: Tobias Klauser <tobias.klauser@gmail.com> Trust: Benny Siegert <bsiegert@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Benny Siegert <bsiegert@gmail.com> TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/runtime/os_netbsd_amd64.go')
-rw-r--r--src/runtime/os_netbsd_amd64.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/os_netbsd_amd64.go b/src/runtime/os_netbsd_amd64.go
index 5118b0c4ff..ea9d125492 100644
--- a/src/runtime/os_netbsd_amd64.go
+++ b/src/runtime/os_netbsd_amd64.go
@@ -14,3 +14,6 @@ func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintp
mc.__gregs[_REG_R9] = uint64(uintptr(unsafe.Pointer(gp)))
mc.__gregs[_REG_R12] = uint64(fn)
}
+
+func archauxv(auxv []uintptr) {
+}