summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/memory
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/modernc.org/memory')
-rw-r--r--vendor/modernc.org/memory/Makefile2
-rw-r--r--vendor/modernc.org/memory/mmap_freebsd_32.go4
-rw-r--r--vendor/modernc.org/memory/mmap_openbsd.go4
3 files changed, 6 insertions, 4 deletions
diff --git a/vendor/modernc.org/memory/Makefile b/vendor/modernc.org/memory/Makefile
index d0c9c2541..778b3908e 100644
--- a/vendor/modernc.org/memory/Makefile
+++ b/vendor/modernc.org/memory/Makefile
@@ -38,6 +38,7 @@ editor:
GOOS=darwin GOARCH=arm64 go build
GOOS=freebsd GOARCH=386 go build
GOOS=freebsd GOARCH=amd64 go build
+ GOOS=freebsd GOARCH=arm go build
GOOS=linux GOARCH=386 go build
GOOS=linux GOARCH=amd64 go build
GOOS=linux GOARCH=arm go build
@@ -51,6 +52,7 @@ editor:
GOOS=netbsd GOARCH=amd64 go build
GOOS=openbsd GOARCH=386 go build
GOOS=openbsd GOARCH=amd64 go build
+ GOOS=openbsd GOARCH=arm64 go build
GOOS=windows GOARCH=386 go build
GOOS=windows GOARCH=amd64 go build
diff --git a/vendor/modernc.org/memory/mmap_freebsd_32.go b/vendor/modernc.org/memory/mmap_freebsd_32.go
index 0055e64b4..8b88f1b0e 100644
--- a/vendor/modernc.org/memory/mmap_freebsd_32.go
+++ b/vendor/modernc.org/memory/mmap_freebsd_32.go
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE-GO file.
-//go:build freebsd && 386
-// +build freebsd,386
+//go:build (freebsd && 386) || (freebsd && arm)
+// +build freebsd,386 freebsd,arm
package memory
diff --git a/vendor/modernc.org/memory/mmap_openbsd.go b/vendor/modernc.org/memory/mmap_openbsd.go
index 117cfd9ff..0b5e4f1de 100644
--- a/vendor/modernc.org/memory/mmap_openbsd.go
+++ b/vendor/modernc.org/memory/mmap_openbsd.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 386 || amd64
-// +build 386 amd64
+//go:build 386 || amd64 || arm64
+// +build 386 amd64 arm64
package memory