diff options
author | PHO <pho@cielonegro.org> | 2024-05-17 06:22:49 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 23:22:49 +0200 |
commit | 0ba932132e56d30de7af268f3268b3141ad22bc8 (patch) | |
tree | b12391230b3fb18b30327573653d3b7f9f96dfb8 /compiler | |
parent | 2c8551556e5b51b7a7e487b1043b92d4ad34dbf0 (diff) | |
download | Nim-0ba932132e56d30de7af268f3268b3141ad22bc8.tar.gz |
Support NetBSD/aarch64 (#23616)
I could trivially port Nim to NetBSD/aarch64 because it already supported NetBSD and aarch64. I only needed to generate `c_code` for this combination.
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/installer.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/installer.ini b/compiler/installer.ini index 8569d0ef8..1a998d9ef 100644 --- a/compiler/installer.ini +++ b/compiler/installer.ini @@ -10,7 +10,7 @@ Platforms: """ macosx: i386;amd64;powerpc64;arm64 solaris: i386;amd64;sparc;sparc64 freebsd: i386;amd64;powerpc64;arm;arm64;riscv64;sparc64;mips;mipsel;mips64;mips64el;powerpc;powerpc64el - netbsd: i386;amd64 + netbsd: i386;amd64;arm64 openbsd: i386;amd64;arm;arm64 dragonfly: i386;amd64 crossos: amd64 |