diff options
| author | Joel Sing <joel@sing.id.au> | 2021-01-27 01:48:47 +1100 |
|---|---|---|
| committer | Joel Sing <joel@sing.id.au> | 2021-01-28 02:19:23 +0000 |
| commit | 376518d77fb5d718f90c8b66ea25660aa3734032 (patch) | |
| tree | f4d34fca0c3be24d14244b099e96c445a991b91a /src/syscall/exec_bsd.go | |
| parent | 00f2ff5c942e8f3e68cd10b5909278cda15c6bb5 (diff) | |
| download | go-376518d77fb5d718f90c8b66ea25660aa3734032.tar.xz | |
runtime,syscall: convert syscall on openbsd/arm64 to libc
Convert the syscall package on openbsd/arm64 to use libc rather than performing
direct system calls.
Updates #36435
Change-Id: I7e1da8537cea9ed9bf2676f181e56ae99383333f
Reviewed-on: https://go-review.googlesource.com/c/go/+/286815
Trust: Joel Sing <joel@sing.id.au>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Diffstat (limited to 'src/syscall/exec_bsd.go')
| -rw-r--r-- | src/syscall/exec_bsd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/exec_bsd.go b/src/syscall/exec_bsd.go index 9069ef4613..940a81b58e 100644 --- a/src/syscall/exec_bsd.go +++ b/src/syscall/exec_bsd.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build dragonfly freebsd netbsd openbsd,!amd64 +// +build dragonfly freebsd netbsd openbsd,!amd64,!arm64 package syscall |
