commit | cdb799601c6eaa4ba2327528ddcf3781dc0c05d1 | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Tue Jul 12 00:15:11 2016 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Tue Jul 12 00:15:11 2016 +0000 |
tree | d371f6416e5e900565699a4d3bc4daea641cc27a | |
parent | 32b10dc02806b70ffdad7a6e3c5b767c5a6de507 [diff] | |
parent | e1de29e5429454e581fb7ff5ae224812cd465739 [diff] |
Merge remote-tracking branch \\'aosp/upstream\\' am: fa3234caba am: e1de29e542 Change-Id: Idcc752a99c134f2bf0c403c84ba1fed621e0961b
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