-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
54 lines (29 loc) · 1.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Examine, a memory leak detector, PE file viewer, PE file dependency viewer for Windows
Dependencies : Elementary (optional), win-builds
Build for Windows 64 bits:
* ./autogen.sh --host=x86_64-w64-mingw32 --disable-static --with-libbfd-prefix=/opt/windows_64
Build for Windows 32 bits:
* ./autogen.sh --host=i686-w64-mingw32 --disable-static --with-libbfd-prefix=/opt/windows_32
Tools:
* memcheck : memory leak detector
* depends : PE file dependency viewer (GUI with Elementary)
* view : PE file viewer (GUI with Elementary)
Usage:
* help:
examine --help
* memory checker:
examine /path/to/my_prog args
or
examine --tool=memcheck
* PE dependencies:
** tree dependencies in text mode:
examine --tool=depends /path/to/my_dll
** list dependencies in text mode:
examine --tool=depends --list /path/to/my_dll
** GUI ala dependency walker:
examine --tool=depends --gui /path/to/my_dll
* PE viewer:
** text mode:
examine --tool=view /path/to/my_dll
** GUI:
examine --tool=view --gui /path/to/my_dll