commit | a26404a1a6d7ea9644f967321628b6637d43b24e | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Wed Sep 21 07:53:31 2016 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Wed Sep 21 07:53:31 2016 +0000 |
tree | a762d85e42d042acf8682366a2f9741fa1eb92b9 | |
parent | 5ce8829c2a79f7222e1886374ffb4b5616f231ab [diff] | |
parent | 09ad1f21aedf5dbf4e5e3c1cdba23e78a56f47a4 [diff] |
Merge remote-tracking branch 'aosp/upstream' into master am: 38315d2f21 am: 56fa7f0d2c am: 09ad1f21ae Change-Id: Ibf044ca94fa6b5a1a4ad1c3e962f0e4f53e908ce
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