Skip to content

Commit 71826df

Browse files
committed
Support ARM runtime installation on Linux
1 parent e15c9d9 commit 71826df

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

native/src/components/runtime.rs

+2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,8 @@ fn get_download_url() -> &'static str {
139139
concatcp!(BASE_DOWNLOAD_URL, "linux")
140140
} else if #[cfg(all(platform_linux, target_arch = "x86_64"))] {
141141
concatcp!(BASE_DOWNLOAD_URL, "linux64")
142+
} else if #[cfg(all(platform_linux, target_arch = "aarch64"))] {
143+
concatcp!(BASE_DOWNLOAD_URL, "linux64-aarch64")
142144
} else if #[cfg(platform_macos)] {
143145
concatcp!(BASE_DOWNLOAD_URL, "osx")
144146
} else {

0 commit comments

Comments
 (0)