Sizhe Zhao
Sizhe Zhao
```c /* 7.8.1 Macros for format specifiers * * MS runtime does not yet understand C9x standard "ll" * length specifier. It appears to treat "ll" as "l". * The...
IDK :( . the second answer to the Stack Overflow question says: > If you must use %llu, define __USE_MINGW_ANSI_STDIO macro before including stdio.h. Be aware that if you do...
Errors related to env.c now disappears, but new ones come: ``` In file included from ../../../../../src/gcc-10.2.0/libgomp/config/mingw32/affinity-fmt.c:68: E:/mingw1020/src/gcc-10.2.0/libgomp/affinity-fmt.c: In function 'gomp_display_affinity': E:/mingw1020/src/gcc-10.2.0/libgomp/affinity-fmt.c:388:22: error: unknown conversion type character 'l' in format [-Werror=format=]...
@lurobi @niXman 7de159b732fd2f428048f0574a9c9124dd827774 should fix it, which is already on develop.
@lurobi Please try with --with-default-msvcrt=ucrt as this problem is probably related to UCRT.
``` $BASE_BUILD_DIR/mingw$(func_get_arch_bit ${BUILD_ARCHITECTURE}): /e/mingw1020/x86_64-1020-posix-seh-rt_v700/mingw64 $PREFIX: /e/mingw1020/x86_64-1020-posix-seh-rt_v700/mingw64 ```
Since other package installs to `$PREFIX`, I would prefer `$PREFIX`. But that makes it confusing why https://github.com/niXman/mingw-builds/commit/1b4471dc2ebd2b298e9f3ba5f368167f20916599 exists in the first place.
None. Maybe we should just change it back to `$PREFIX`, what do you think?
Try this (add to system configuration): ```nix { lib, pkgs, ... }: { wsl.extraBin = [ { src = lib.getExe' pkgs.coreutils "uname"; } ]; } ```
@Mic92 please take a look.