summaryrefslogtreecommitdiffstats
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/Makefile4
-rw-r--r--vendor/modernc.org/memory/mmap_freebsd_32.go4
-rw-r--r--vendor/modernc.org/memory/mmap_freebsd_64.go4
-rw-r--r--vendor/modernc.org/memory/mmap_netbsd_32.go4
-rw-r--r--vendor/modernc.org/memory/mmap_openbsd.go4
5 files changed, 12 insertions, 8 deletions
diff --git a/vendor/modernc.org/memory/Makefile b/vendor/modernc.org/memory/Makefile
index d0c9c254..2da7b2cd 100644
--- a/vendor/modernc.org/memory/Makefile
+++ b/vendor/modernc.org/memory/Makefile
@@ -38,6 +38,8 @@ 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=freebsd GOARCH=arm64 go build
GOOS=linux GOARCH=386 go build
GOOS=linux GOARCH=amd64 go build
GOOS=linux GOARCH=arm go build
@@ -49,8 +51,10 @@ editor:
GOOS=linux GOARCH=s390x go build
GOOS=netbsd GOARCH=386 go build
GOOS=netbsd GOARCH=amd64 go build
+ GOOS=netbsd GOARCH=arm 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 0055e64b..8b88f1b0 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_freebsd_64.go b/vendor/modernc.org/memory/mmap_freebsd_64.go
index cf1c91df..9a988bca 100644
--- a/vendor/modernc.org/memory/mmap_freebsd_64.go
+++ b/vendor/modernc.org/memory/mmap_freebsd_64.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 && amd64
-// +build freebsd,amd64
+//go:build (freebsd && amd64) || (freebsd && arm64)
+// +build freebsd,amd64 freebsd,arm64
package memory
diff --git a/vendor/modernc.org/memory/mmap_netbsd_32.go b/vendor/modernc.org/memory/mmap_netbsd_32.go
index d417f359..2c169112 100644
--- a/vendor/modernc.org/memory/mmap_netbsd_32.go
+++ b/vendor/modernc.org/memory/mmap_netbsd_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 netbsd && 386
-// +build netbsd,386
+//go:build netbsd && 386 || netbsd && arm
+// +build netbsd,386 netbsd,arm
package memory
diff --git a/vendor/modernc.org/memory/mmap_openbsd.go b/vendor/modernc.org/memory/mmap_openbsd.go
index 117cfd9f..0b5e4f1d 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