8000 add linux-arm64 to download-ls by streak324 · Pull Request #2078 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content
8000

add linux-arm64 to download-ls #2078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add linux-arm64 to download-ls
  • Loading branch information
streak324 committed May 28, 2023
commit ca8723c0aab06e4c50129dd3743c7b337d8fe5e3
6 changes: 6 additions & 0 deletions arduino-ide-extension/scripts/download-ls.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@
lsSuffix = 'Linux_64bit.tar.gz';
589D clangdSuffix = 'Linux_64bit';
break;
case 'linux-arm64':
clangdExecutablePath = path.join(build, 'clangd');
clangFormatExecutablePath = path.join(build, 'clang-format');
lsSuffix = 'Linux_ARM64.tar.gz';
clangdSuffix = 'Linux_ARM64';
break;
case 'win32-x64':
clangdExecutablePath = path.join(build, 'clangd.exe');
clangFormatExecutablePath = path.join(build, 'clang-format.exe');
Expand Down
0