Skip to content

Commit

Permalink
add x86_64-linux (static)
Browse files Browse the repository at this point in the history
  • Loading branch information
angerman committed Jul 5, 2024
1 parent 2d13185 commit 3a3c19d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@
# we also want cross compilation to windows on linux (and only with default compiler).
crossPlatforms = p:
lib.optionals (system == "x86_64-linux" && config.compiler-nix-name == defaultCompiler)
[ p.mingwW64 p.aarch64-multiplatform-musl ];
[
p.mingwW64 # x86_64-windows
p.aarch64-multiplatform-musl # aarch64-linux (static)
p.musl64 # x86_64-linux (static)

];

# CHaP input map, so we can find CHaP packages (needs to be more
# recent than the index-state we set!). Can be updated with
Expand Down

0 comments on commit 3a3c19d

Please sign in to comment.