diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-02-23 18:08:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 18:08:17 +0000 |
commit | 619acce305ac77f98327718bc1e6a1ae13d8bcf6 (patch) | |
tree | bffc6164da1fadfffdf7cfa13b4a898e180a2f62 | |
parent | d2ed219dcbb8e9b688588d7524dfa7cd1ded7efe (diff) |
fix(compile): allow to compile for ARM linux (#22542)
Closes https://github.com/denoland/deno/issues/22527
-rw-r--r-- | cli/args/flags.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 7712a291e..ca285112e 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1312,6 +1312,7 @@ supported in canary. .help("Target OS architecture") .value_parser([ "x86_64-unknown-linux-gnu", + "aarch64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-apple-darwin", "aarch64-apple-darwin", |