-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathREADME
More file actions
18 lines (15 loc) · 775 Bytes
/
README
File metadata and controls
18 lines (15 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.