Skip to content

Commit d2f0f1c

Browse files
committed
src/goTools: allow to install dlv for arm64
Fixes #2339 Change-Id: I69f77a0257b96a7cb8840380fc5dbe983281c82b Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/417296 TryBot-Result: kokoro <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Jamal Carvalho <[email protected]>
1 parent 180bbce commit d2f0f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goTools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export function getConfiguredTools(
161161
// Check if the system supports dlv, i.e. is 64-bit.
162162
// There doesn't seem to be a good way to check if the mips and s390
163163
// families are 64-bit, so just try to install it and hope for the best.
164-
if (process.arch.match(/^(mips|mipsel|ppc64|s390|s390x|x64)$/)) {
164+
if (process.arch.match(/^(mips|mipsel|ppc64|s390|s390x|x64|arm64)$/)) {
165165
maybeAddTool('dlv');
166166
}
167167

0 commit comments

Comments
 (0)