From 619acce305ac77f98327718bc1e6a1ae13d8bcf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 23 Feb 2024 18:08:17 +0000 Subject: [PATCH] fix(compile): allow to compile for ARM linux (#22542) Closes https://github.com/denoland/deno/issues/22527 --- cli/args/flags.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 7712a291e5..ca285112e3 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",