From bedf2c488630bd8253598b78088bc27fc36fbd29 Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Fri, 5 Feb 2021 04:22:18 +1100 Subject: runtime,syscall: convert syscall on openbsd/arm to libc Convert the syscall package on openbsd/arm to use libc rather than performing direct system calls. Updates #36435 Change-Id: Iff3a91c959292cbf4e0a09c7fd34efc8e88ff83f Reviewed-on: https://go-review.googlesource.com/c/go/+/315793 Trust: Joel Sing Reviewed-by: Cherry Mui --- src/syscall/exec_bsd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/syscall/exec_bsd.go') diff --git a/src/syscall/exec_bsd.go b/src/syscall/exec_bsd.go index 41d1f693b2..569dd675ed 100644 --- a/src/syscall/exec_bsd.go +++ b/src/syscall/exec_bsd.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build dragonfly || freebsd || netbsd || (openbsd && !386 && !amd64 && !arm64) -// +build dragonfly freebsd netbsd openbsd,!386,!amd64,!arm64 +//go:build dragonfly || freebsd || netbsd || (openbsd && !386 && !amd64 && !arm && !arm64) +// +build dragonfly freebsd netbsd openbsd,!386,!amd64,!arm,!arm64 package syscall -- cgit v1.3