Skip to content

Commit 8bd313d

Browse files
committed
Disabled support for netbsd/arm64 and openbsd/arm64.
While Go will build for these platforms, neither currently has a builder and netbsd/arm64 is apparently broken. It looks like the Go 1.13 release notes were updated to remove the announcement of these ports. Support for netbsd/arm64 is tracked in golang/go#34036 and support for openbsd/arm64 is tracked in golang/go#34035. Signed-off-by: Jacob Howard <[email protected]>
1 parent f5d157f commit 8bd313d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/build.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,13 @@ var targets = []Target{
257257
{"netbsd", "386"},
258258
{"netbsd", "amd64"},
259259
{"netbsd", "arm"},
260-
{"netbsd", "arm64"},
260+
// TODO: Enable netbsd/arm64 once golang/go#34036 is resolved.
261+
// {"netbsd", "arm64"},
261262
{"openbsd", "386"},
262263
{"openbsd", "amd64"},
263264
{"openbsd", "arm"},
264-
{"openbsd", "arm64"},
265+
// TODO: Enable openbsd/arm64 once golang/go#34035 is resolved.
266+
// {"openbsd", "arm64"},
265267
// We disable support for Plan 9 because it's missing too many system calls
266268
// and other APIs necessary for Mutagen to build. It might make sense to
267269
// support Plan 9 as an endpoint for certain development scenarios, but it

0 commit comments

Comments
 (0)