7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ランタイムライブラリについて

Last updated at Posted at 2014-04-14

visualstudioのランタイムライブラリオプションに関するメモ。
lib名との対応など。

オプション 利用ライブラリ 自動定義されるマクロ
/MD MSVCRT.lib (実行時にmsvcr90.dll使用) _MT _DLL
/MDd MSVCRTD.lib (実行時にmsvcr90d.dll使用) _MT _DLL _DEBUG
/MT LIBCMT.lib(静的リンク) _MT
/MTd LIBCMTD.lib(静的リンク) _MT _DEBUG

利用する全てのモジュールは同じランタイムライブラリオプションでコンパイルする必要がある。

CRT = C Run-Time

7
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?