commit | 8167805987d65fc5dd9b24b8f69fef962a941c61 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Mon Feb 05 08:21:56 2018 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Mon Feb 05 08:21:56 2018 +0000 |
tree | abb8195b75a68b4d402374d9a33538907b948837 | |
parent | d0e4c5d89abfd637b13a6f0324b96a071d313098 [diff] | |
parent | 0cb976c71838c6c6bbe6710e29f641082c62e4c8 [diff] |
Snap for 4585119 from 0cb976c71838c6c6bbe6710e29f641082c62e4c8 to pi-release Change-Id: I937c56b45648fb80368eaa7415233b8c955c4f0f
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