diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2025-04-04 15:12:44 +0200 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2025-04-04 15:13:28 +0200 |
commit | a5a09ef6c1deb58cbb95f4d027fe688253689b70 (patch) | |
tree | 8ab8414db51a4e65e1a8fc8fff27cfbd0d9c5ff2 /www/deno/files/patch-cli_args_flags.rs | |
parent | www/dooble: Update 2025.03.27 => 2025.04.02 (diff) |
www/deno: Update to 2.2.5
Obtained from: OpenBSD
Diffstat (limited to 'www/deno/files/patch-cli_args_flags.rs')
-rw-r--r-- | www/deno/files/patch-cli_args_flags.rs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/www/deno/files/patch-cli_args_flags.rs b/www/deno/files/patch-cli_args_flags.rs new file mode 100644 index 000000000000..f3e0f05287b2 --- /dev/null +++ b/www/deno/files/patch-cli_args_flags.rs @@ -0,0 +1,26 @@ +--- cli/args/flags.rs.orig 2025-03-29 17:44:00 UTC ++++ cli/args/flags.rs +@@ -520,6 +520,14 @@ impl DenoSubcommand { + os: "darwin".into(), + cpu: "arm64".into(), + }, ++ "aarch64-unknown-freebsd" => NpmSystemInfo { ++ os: "freebsd".into(), ++ cpu: "arm64".into(), ++ }, ++ "x86_64-unknown-freebsd" => NpmSystemInfo { ++ os: "freebsd".into(), ++ cpu: "x64".into(), ++ }, + "aarch64-unknown-linux-gnu" => NpmSystemInfo { + os: "linux".into(), + cpu: "arm64".into(), +@@ -1971,6 +1979,8 @@ On the first invocation of `deno compile`, Deno will d + .long("target") + .help("Target OS architecture") + .value_parser([ ++ "x86_64-unknown-freebsd", ++ "aarch64-unknown-freebsd", + "x86_64-unknown-linux-gnu", + "aarch64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", |