I'm trying to compile libvpx on MinGW, using ./configure --target=x86-win32-gcc --enable-static-msvcrt --prefix=/MinGW and I get this error:
[STRIP] libgtest.a < libgtest_g.a
/bin/sh: /mingw/bin/strip: Bad file number
make[1]: *** [libgtest.a] Error 126
make: *** [.DEFAULT] Error 2
Any ideas how to fix this? I have tried both the latest libvpx on git and the 1.2.0 release of it, both give me this error.
procmonfrom SysInternals might help you zero in on the problem. – Michael Burr Nov 20 '13 at 1:24caclscommand can do this at the command line if you prefer. You can use theattribcommand to see if a file has a read-only attribute on it (in which case a program trying to write to the file might act as if it had a permissions problem). – Michael Burr Nov 20 '13 at 2:04stripdoesn't take input fromstdinso the< libgtest_g.alooks suspect to me. – Michael Burr Nov 20 '13 at 2:10