24
20

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.

VisualStudioのビルド時間を簡単に早くする

Last updated at Posted at 2015-01-17

#目的
プログラマにとって一番時間の無駄になっているであろう「ビルド時間」を短縮する。
方法はいろいろあるが、これは今すぐ短縮したい人向け。
筆者はVisual Studio 2013 Communityで行った。

##プロパティをいじる

これは非常に簡単で、その割に効果の高い方法である。

  1. まずはプロジェクト→プロパティ→構成プロパティ→C/C++→
    複数プロセッサによるコンパイルを「はい」にする。

  2. 構成プロパティ→C/C++→コード生成の最小ビルドを有効にするを「いいえ」にする。

これだけだ。
試しに、自分が今作っているプロジェクトのビルド時間を測定してみた。

Debugビルド Releaseビルド
設定前 33222ms 33578ms
設定後 22252ms 20123ms

見れば分かる通り、10秒以上の短縮に成功している。
この2つの設定だけでかなり変わるので、試してみては。

24
20
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
24
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?