mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
lib: Switch to w64 vendor for MinGW
It is needed for the `-municode` flag, supposedly.
This commit is contained in:
parent
38ebb8ff82
commit
91718534f1
2 changed files with 5 additions and 2 deletions
|
@ -207,7 +207,7 @@ rec {
|
|||
|
||||
# 32 bit mingw-w64
|
||||
mingw32 = {
|
||||
config = "i686-pc-mingw32";
|
||||
config = "i686-w64-mingw32";
|
||||
libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
|
||||
platform = {};
|
||||
};
|
||||
|
@ -215,7 +215,7 @@ rec {
|
|||
# 64 bit mingw-w64
|
||||
mingwW64 = {
|
||||
# That's the triplet they use in the mingw-w64 docs.
|
||||
config = "x86_64-pc-mingw32";
|
||||
config = "x86_64-w64-mingw32";
|
||||
libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
|
||||
platform = {};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue