diff options
| author | John Ericson <git@JohnEricson.me> | 2024-11-26 20:39:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-26 20:39:38 -0500 |
| commit | 07f8638828759644300c7b331f964cfbca517879 (patch) | |
| tree | 5ceb0148d9731d78151d5cb3aab44b64b8bc1bea /lib/systems | |
| parent | Meilisearch module (#359206) (diff) | |
| parent | freebsd: Add support for aarch64 (diff) | |
| download | nixpkgs-07f8638828759644300c7b331f964cfbca517879.tar.gz | |
freebsd: Add support for aarch64 (#358053)
Diffstat (limited to 'lib/systems')
| -rw-r--r-- | lib/systems/doubles.nix | 2 | ||||
| -rw-r--r-- | lib/systems/examples.nix | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix index f60c6a8addef..a753c835c810 100644 --- a/lib/systems/doubles.nix +++ b/lib/systems/doubles.nix @@ -13,7 +13,7 @@ let "x86_64-darwin" "i686-darwin" "aarch64-darwin" "armv7a-darwin" # FreeBSD - "i686-freebsd" "x86_64-freebsd" + "i686-freebsd" "x86_64-freebsd" "aarch64-freebsd" # Genode "aarch64-genode" "i686-genode" "x86_64-genode" diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix index 8433042838dc..223de50f67dd 100644 --- a/lib/systems/examples.nix +++ b/lib/systems/examples.nix @@ -335,6 +335,11 @@ rec { # BSDs + aarch64-freebsd = { + config = "aarch64-unknown-freebsd"; + useLLVM = true; + }; + x86_64-freebsd = { config = "x86_64-unknown-freebsd"; useLLVM = true; |
