We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e15c9d9 commit 71826dfCopy full SHA for 71826df
native/src/components/runtime.rs
@@ -139,6 +139,8 @@ fn get_download_url() -> &'static str {
139
concatcp!(BASE_DOWNLOAD_URL, "linux")
140
} else if #[cfg(all(platform_linux, target_arch = "x86_64"))] {
141
concatcp!(BASE_DOWNLOAD_URL, "linux64")
142
+ } else if #[cfg(all(platform_linux, target_arch = "aarch64"))] {
143
+ concatcp!(BASE_DOWNLOAD_URL, "linux64-aarch64")
144
} else if #[cfg(platform_macos)] {
145
concatcp!(BASE_DOWNLOAD_URL, "osx")
146
} else {
0 commit comments