Skip to content

Commit d79bc0d

Browse files
authored
add linux-arm64 to download-ls (#2078)
1 parent 8f8b46f commit d79bc0d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: arduino-ide-extension/scripts/download-ls.js

+6
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@
8888
lsSuffix = 'Linux_64bit.tar.gz';
8989
clangdSuffix = 'Linux_64bit';
9090
break;
91+
case 'linux-arm64':
92+
clangdExecutablePath = path.join(build, 'clangd');
93+
clangFormatExecutablePath = path.join(build, 'clang-format');
94+
lsSuffix = 'Linux_ARM64.tar.gz';
95+
clangdSuffix = 'Linux_ARM64';
96+
break;
9197
case 'win32-x64':
9298
clangdExecutablePath = path.join(build, 'clangd.exe');
9399
clangFormatExecutablePath = path.join(build, 'clang-format.exe');

0 commit comments

Comments
 (0)