28
30

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.

Ninjaの速さを体感するともはやMakeには戻れない

Posted at

はじめに

Ninjaというビルドシステムがあるのは知っていたのですが今まで使っていませんでした。
先日、研究で使用しているライブラリを最新版にアップデートする時、試しにMakeの代わりにNinjaを使ってみたら爆速で、現在はデフォルトでNinjaを使用するようになりました。VTKライブラリをビルドするとき、__Makeだと少なくとも10分以上掛かっていたのがNinjaでは1分強だった__ので、これだけスピードが違うともうMakeを使う理由がないですね。特に大きなライブラリをビルドするとき顕著に差が出ると感じています。

使い方

バイナリをダウンロードしローカルディレクトリに置いてパスを通すか、パッケージマネージャを通してインストールします。

CMakeを使っていれば、簡単にMakeとNinjaを切り替えられます。
以下のように-GNinjaを追加してconfigureしてください。

Makeの場合
mkdir build
cd build
cmake ..
make && make install
Ninjaの場合
mkdir build
cd build
cmake -GNinja ..
ninja && ninja install
28
30
1

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
28
30

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?