commit | e5288b11fc3d65b2c8a9f222959be0f910f948eb | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Thu Feb 08 06:18:33 2018 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Thu Feb 08 06:18:33 2018 +0000 |
tree | c75669fd7602753774c8113a2fd5f3a6761e2f2a | |
parent | 4f6feb3cc2770d576d37e58b681d841435f868bd [diff] | |
parent | e14ea3ab0b568091b0563decd96969036ebf033d [diff] |
Merge remote-tracking branch 'aosp/upstream' into master am: 398aa879e9 am: e14ea3ab0b Change-Id: I01567d063632dbaf8809d227a686fa2b4619ebe2
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