commit | e1de29e5429454e581fb7ff5ae224812cd465739 | [log] [tgz] |
---|---|---|
author | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | Tue Jul 12 00:12:28 2016 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Tue Jul 12 00:12:28 2016 +0000 |
tree | d371f6416e5e900565699a4d3bc4daea641cc27a | |
parent | 32b10dc02806b70ffdad7a6e3c5b767c5a6de507 [diff] | |
parent | fa3234cabaa3a7350cebc04d9b5948d7d1d1dcfa [diff] |
Merge remote-tracking branch \'aosp/upstream\' am: fa3234caba Change-Id: I1eb4edbfe2f5d4fbfe07e1eb15884f0df2e3b0b9
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.
Now AOSP has kati and ninja, so all you have to do is
% export USE_NINJA=true
All Android's build commands (m, mmm, mmma, etc.) should just work.
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