commit | e3a8287fe66407b20b3e033021e8d3a2df16e48c | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Fri Oct 26 14:10:03 2018 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Fri Oct 26 14:10:03 2018 -0700 |
tree | 00d32c74374af3ff1a924bd8683526b890d8951c | |
parent | fa4ddf57d478e079882d78fa64a2bee02038789c [diff] | |
parent | 2de6712ec47ce8aab21d8953c51005e6f2c71cd6 [diff] |
Merge remote-tracking branch 'aosp/upstream' am: 2de6712ec4 Change-Id: Ibfd49a068613ab17103ac69bd0d00bdd56ea912d
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.
For Android-N+, ckati and ninja is used automatically. There is a prebuilt checked in under prebuilts/build-tools that is used.
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 % ./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