What is the equivalent of Linux's ldd on windows?

前端 未结 10 1557
既然无缘
既然无缘 2020-12-12 14:28

What is the equivalent of Linux\'s ldd on Windows?

10条回答
  •  囚心锁ツ
    2020-12-12 15:17

    The dumpbin command can be useful for many things, although in this case dependency walker is probably a little more verbose.

    dumpbin /dependents some.dll
    

    Example output:

    C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Static Analysis Tools>dumpbin /dependents StanPolicy.dll

    Dump of file StanPolicy.dll

    File Type: DLL

    Image has the following dependencies:

    mscoree.dll
    

    Summary

        2000 .reloc
        2000 .rsrc
       1E000 .text
    

提交回复
热议问题