tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lib.systems.examples: add aarch64-w64-mingw32
seth
1 year ago
b5bf8e3f
205faabf
+7
1 changed file
expand all
collapse all
unified
split
lib
systems
examples.nix
+7
lib/systems/examples.nix
···
325
libc = "ucrt"; # This distinguishes the mingw (non posix) toolchain
326
};
327
0
0
0
0
0
0
0
328
# BSDs
329
330
x86_64-freebsd = {
···
325
libc = "ucrt"; # This distinguishes the mingw (non posix) toolchain
326
};
327
328
+
# LLVM-based mingw-w64 for ARM
329
+
ucrtAarch64 = {
330
+
config = "aarch64-w64-mingw32";
331
+
libc = "ucrt";
332
+
useLLVM = true;
333
+
};
334
+
335
# BSDs
336
337
x86_64-freebsd = {