DevonTM / ntldd

Tracks dependencies for Windows EXE and DLL PE-files (Portable Executable), resembles ldd from libc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This small utility will do the one thing that most people want from ldd - it
will give you a list of libraries a library or executable depends upon.

Pros:
 * Knows about delayed loading.
 * Can list dependencies recursively (like depends.exe does, but without
duplicating entries)
 * Free software
 * Output tries to mimic ldd (might be usable as a drop-in replacement for ldd)

Cons:
 * Is likely buggy and might fail spectacularly on uncommon PE files
(especially created by toolsets other than MSVC or GCC)
 * Might not work on Windows CE or in relatively uncommon environments
 * Does not have any advanced features of ldd (most options do not work)
 * Does not mimic ldd completely

Run makeldd.cmd to compile. Requires GCC and win32api MinGW packages.

About

Tracks dependencies for Windows EXE and DLL PE-files (Portable Executable), resembles ldd from libc


Languages

Language:C 97.2%Language:Makefile 1.3%Language:Shell 0.9%Language:Batchfile 0.6%