Update entry "How can I find out which dlls are needed by an executable?"
including information about cygcheck.
This commit is contained in:
parent
847647e95c
commit
cdfeaeb823
|
@ -241,10 +241,22 @@ gcc as:
|
||||||
|
|
||||||
@subsection How can I find out which dlls are needed by an executable?
|
@subsection How can I find out which dlls are needed by an executable?
|
||||||
|
|
||||||
@strong{(Please note: This section has not yet been updated for the latest
|
@samp{objdump -p} provides this information, but is rather verbose.
|
||||||
net release.)}
|
|
||||||
|
|
||||||
objdump -p provides this information.
|
@samp{cygcheck} will do this much more concisely, provided the command
|
||||||
|
is in your path.
|
||||||
|
|
||||||
|
Note there is currently a bug in cygcheck in that it will not report
|
||||||
|
on a program in a Windows system dir (e.g., C:\Windows or C:\WINNT) even
|
||||||
|
if it's in your path. To work around this, supply the full Win32 path
|
||||||
|
to the executable, including the .exe extension:
|
||||||
|
|
||||||
|
@example
|
||||||
|
cygcheck c:\\winnt\\system32\\cmd.exe
|
||||||
|
@end example
|
||||||
|
|
||||||
|
(Note the windows path separator must be escaped if this is typed in
|
||||||
|
bash.)
|
||||||
|
|
||||||
@subsection How do I build a DLL?
|
@subsection How do I build a DLL?
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue