aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/dist
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-06-11 17:38:23 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-06-14 20:36:54 +0000
commit6bbb0a9d4a086af04d8eb16e17d1b144622a86f5 (patch)
tree2bd2ba89b1a30890f79b07dd50a692cf049c64ef /src/cmd/dist
parentd4f34f8c63b753160716e9f90ca530016ce019d7 (diff)
downloadgo-6bbb0a9d4a086af04d8eb16e17d1b144622a86f5.tar.gz
go-6bbb0a9d4a086af04d8eb16e17d1b144622a86f5.zip
cmd/internal/sys: mark windows/arm64 as c-shared-capable
The platform supports c-shared now, so flip this on. I've given this a small smoke test using [1], and it was able to pass packets and generally function well. Since [1] uses quite a bit of Go functionality under the hood, I think it's a decent test that a lot of things that should be working are working. So this commit enables it. [1] https://git.zx2c4.com/wireguard-windows/about/embeddable-dll-service/README.md Updates #46502. Change-Id: I5c771d033bd20e5ce472c315d7c207bbc1020b4a Reviewed-on: https://go-review.googlesource.com/c/go/+/326310 Trust: Jason A. Donenfeld <Jason@zx2c4.com> Trust: Alex Brainman <alex.brainman@gmail.com> Run-TryBot: Jason A. Donenfeld <Jason@zx2c4.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/cmd/dist')
-rw-r--r--src/cmd/dist/test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go
index 1ed2c0f631..f2c4cf0b43 100644
--- a/src/cmd/dist/test.go
+++ b/src/cmd/dist/test.go
@@ -1057,7 +1057,7 @@ func (t *tester) supportedBuildmode(mode string) bool {
"darwin-amd64", "darwin-arm64",
"freebsd-amd64",
"android-arm", "android-arm64", "android-386",
- "windows-amd64", "windows-386":
+ "windows-amd64", "windows-386", "windows-arm64":
return true
}
return false