Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以检查 c++ dll 是否与多线程 dll (/MD) 库链接?有什么工具可以检查吗?
只需使用 Dumpbin.exe /imports 来查看导入。如果它是使用 /MD 构建的,那么您将看到正在使用 msvcrXXX.dll 中的函数。其中 XXX 是 VS 版本号(90 = VS2008、100 = VS2010 等)。