Having been unsuccessful in finding recent, standalone binaries of various Unix tools like xargs
and whatnot (this version, while great, requires external DLLs), I've taken up the challenge of compiling them myself.
...It's painful.
Ultimately, though, I succeeded with sed
and grep
.
However, when I try to build coreutils
with MinGW GCC, I always get this error at the end of ./configure
:
checking whether it is possible to resort to fread on /etc/mnttab... no
configure: error: could not determine how to read list of mounted file systems
Interestingly, this happens both on my Windows machine's MSYS environment, and on Ubuntu's MinGW.
Granted, I could just remove the check from configure
by hand and try to continue, but I'm sure something is going to break down the line, like it always has.
Does anyone know what causes this, and how to fix it?