Skip to content

ctags arm64 osx64 support #304

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
Jul 24, 2019
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 ctags tool config to add support for arm64
The cli automatically downloads this tool during its initial
configuration step The ctags tool provided by Arduino was missing for
download, causing the cli to breaks with a `downloading
builtin:ctags@5.8-arduino11 tool: tool not available for your OS` error.
This commit fixes the error defining pointers to Arduino downloads server
  • Loading branch information
Roberto Sora committed Jul 23, 2019
commit 3f37100adf821839aa02371e1db8d4b32c2bc94e
10 changes: 10 additions & 0 deletions commands/bundled_tools_ctags.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,16 @@ func loadBuiltinCtagsMetadata(pm *packagemanager.PackageManager) {
CachePath: "tools",
},
},
{
OS: "aarch64-linux-gnu",
Resource: &resources.DownloadResource{
ArchiveFileName: "ctags-5.8-arduino11-pm-aarch64-linux-gnu.tar.bz2",
URL: "https://downloads.arduino.cc/tools/ctags-5.8-arduino11-pm-aarch64-linux-gnu.tar.bz2",
Size: 100819,
Checksum: "SHA-256:89b6f8adb7b7124ebe2eb30970ea77c754cd2239e0d8a6b0102ae2a36416c6ef",
CachePath: "tools",
},
},
}
}

Expand Down