IT戦記

プログラミング、起業などについて書いているプログラマーのブログです😚

Visual Studio で exe を ldd する(依存する dll を調べる)方法

今日、教えていただいた方法。

Visual Studio には dumpbin.exe というコマンドラインツールがついているので、それを使う。

C:\bin> dumpbin /DEPENDENTS hoge.exe
Microsoft (R) COFF/PE Dumper Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.


Dump of file hoge.exe

File Type: EXECUTABLE IMAGE

  Image has the following dependencies:

    KERNEL32.dll
    msvcrt.dll
    msvcrt.dll

  Summary

        4000 .bss
        6000 .data
        1000 .idata
       35000 .rdata
        7000 .stab
       27000 .stabstr
       CE000 .text

これは便利