diff options
| author | Cherry Mui <cherryyz@google.com> | 2021-12-06 18:41:49 -0500 |
|---|---|---|
| committer | Cherry Mui <cherryyz@google.com> | 2021-12-07 00:58:10 +0000 |
| commit | 0eb39ca1f0ca118e78648fb6844d35d0a96e5eee (patch) | |
| tree | d2d918bdc80144a401c5c8d0ed2a6eeaf9f73cc7 /src/cmd/dist | |
| parent | 6f65d470d8b688573891420f7a428191d8c6cd49 (diff) | |
| download | go-0eb39ca1f0ca118e78648fb6844d35d0a96e5eee.tar.xz | |
cmd/dist: enable plugin test on Linux/ARM64
The test was skipped because with the old gold linker on the
builder it fails with an internal error in gold. The builders now
have gold 2.31 and the test passes. Enable it.
Fixes #17138.
Change-Id: Ia0054030dd12f1d003c7420bf7ed8b112715baa9
Reviewed-on: https://go-review.googlesource.com/c/go/+/369814
Trust: Cherry Mui <cherryyz@google.com>
Run-TryBot: Cherry Mui <cherryyz@google.com>
Reviewed-by: Than McIntosh <thanm@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/dist')
| -rw-r--r-- | src/cmd/dist/test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cmd/dist/test.go b/src/cmd/dist/test.go index aea1ee6f25..50a2e5936c 100644 --- a/src/cmd/dist/test.go +++ b/src/cmd/dist/test.go @@ -1043,10 +1043,8 @@ func (t *tester) supportedBuildmode(mode string) bool { } return false case "plugin": - // linux-arm64 is missing because it causes the external linker - // to crash, see https://golang.org/issue/17138 switch pair { - case "linux-386", "linux-amd64", "linux-arm", "linux-s390x", "linux-ppc64le": + case "linux-386", "linux-amd64", "linux-arm", "linux-arm64", "linux-s390x", "linux-ppc64le": return true case "darwin-amd64", "darwin-arm64": return true |
