commit | 18642796389309515f93bee020c4a6b7ce2a5f47 | [log] [tgz] |
---|---|---|
author | Jackeagle <jackeagle102@gmail.com> | Tue Mar 05 20:44:25 2019 -0500 |
committer | Jackeagle <jackeagle102@gmail.com> | Tue Mar 05 20:44:25 2019 -0500 |
tree | 84e39a7625bfc7ca9e82f16471ff2d9b4a3e3b47 | |
parent | 045199531f3fb371ac33fd7c97e86b0b04617810 [diff] | |
parent | 2a49513da00436f434281a98dfb118db855db013 [diff] |
Merge tag 'android-9.0.0_r34' of https://android.googlesource.com/platform//build/kati into HEAD Android 9.0.0 Release 34 (PQ2A.190305.002) Change-Id: Icd0f700c4e00701276af5e6259976bee41a51102
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