commit | d04a70ea7fa1ce67334b638fb7dd87d33ab5ea14 | [log] [tgz] |
---|---|---|
author | Android Build Merger (Role) <noreply-android-build-merger@google.com> | Tue Aug 28 20:25:19 2018 +0000 |
committer | Android Build Merger (Role) <noreply-android-build-merger@google.com> | Tue Aug 28 20:25:19 2018 +0000 |
tree | 1e35b6664378aa377d452398e0833985d2cec2ae | |
parent | 96d5d328567607e88c43cb0d895b86d42d864d5e [diff] | |
parent | d5bc270755fe8e17ff9611a83a46eab9dabb6eff [diff] |
[automerger] Support git submodules in version.cc generation. am: 3b166ce40a am: 7f45c35f91 am: 52f19a1dd5 am: d339032ec9 am: d5bc270755 Change-Id: I68e354e73d2c13531d845ddb34f0e3252bb95497
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