commit | 366709b3eaf631db3458780fca599b37776d5c78 | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Fri Jan 11 19:49:25 2019 -0800 |
committer | android-build-merger <android-build-merger@google.com> | Fri Jan 11 19:49:25 2019 -0800 |
tree | 467782d1bda5b82d386b070356bdd37928ae007c | |
parent | 446c30c7d18fbe9b6288ac6cecce292cc4e1f8ce [diff] | |
parent | c44ea0296717bfd549b820b033c069654bd9e461 [diff] |
Merge remote-tracking branch 'aosp/upstream' into update am: 6a94855578 am: 98e7c403c9 am: c44ea02967 Change-Id: I2a9126c9c6249720c643a0ba9a3cc28418096366
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