Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 667 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 667 Bytes

mingw-ldd

Tool to list dependencies of a dll using python and winedump.

Kudos to yan12125 for the original script: https://gist.github.com/yan12125/63c7241596e628553d21

Requirements

  • Python
  • wine

Usage

$ ./mingw-ldd.py /usr/i686-w64-mingw32/bin/libpng16-16.dll
        libgcc_s_sjlj-1.dll => /usr/i686-w64-mingw32/bin/libgcc_s_sjlj-1.dll
        KERNEL32.dll => not found
        msvcrt.dll => not found
        libwinpthread-1.dll => /usr/i686-w64-mingw32/bin/libwinpthread-1.dll
        zlib1.dll => /usr/i686-w64-mingw32/bin/zlib1.dll

See also

You can also checkout another similar tool: https://github.com/LRN/ntldd