使用dumpbin来查看程序的依赖

dumpbin.exe是visual studio中带的工具,可以查看二进制文件的信息,其中就可以用来查看一个程序依赖的dll:

dumpbin.exe /dependents <executable file path>

使用dumpbin也可以查看dll的依赖关系。

原文地址:https://www.cnblogs.com/super119/p/1953123.html