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 など)。