commit | cf6c6c29d66753464db4dddd0b90d788b34eefbc | [log] [tgz] |
---|---|---|
author | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | Tue Jul 21 15:24:35 2015 +0900 |
committer | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | Tue Jul 21 15:24:35 2015 +0900 |
tree | f2872557bca2c455befcf441a7f7f6211fc1dedc | |
parent | 26e83813286888a5245bfa937e6712166518620f [diff] |
[go] backport [C++] ninja: Add $SHELL support also fix rspfile case.
kati is an experimental GNU make clone. The main goal of this tool is to speed-up incremental build of Android.
Currently, kati does not offer a faster build by itself. It instead converts your Makefile to a ninja file.
Set up kati:
% cd ~/src % git clone https://github.com/google/kati % cd kati % make
Build Android:
% cd <android-directory> % source build/envsetup.sh % lunch <your-choice> % ~/src/kati/m2n --kati_stats # Use --goma if you are a Googler. % ./ninja.sh
You need ninja in your $PATH.
% ./ninja.sh -t clean
Note ./ninja.sh passes all parameters to ninja.
For example, the following is equivalent to "make cts":
% ./ninja.sh cts
Or, if you know the path you want, you can do:
% ./ninja.sh out/host/linux-x86/bin/adb
% ~/src/kati/m2n -j10 % ./ninja.sh
Or
% ./ninja.sh -j10
Note the latter kills the parallelism of goma.