commit | 6a9485557803a5f8637e02a520456f48636fe3bf | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Fri Jan 11 14:56:17 2019 -0800 |
committer | Dan Willemsen <dwillemsen@google.com> | Fri Jan 11 14:56:17 2019 -0800 |
tree | 481d5495371ef669ae8ac50f4ca81ebbe447f2d1 | |
parent | 679d6bb847abadde3f61ba773eb34b6b7929b674 [diff] | |
parent | f1ab0fe80bd9776a476297d3f4df7cbec192372a [diff] |
Merge remote-tracking branch 'aosp/upstream' into update * aosp/upstream: Use std::random_device instead of initializing via getpid Fix undeclared identifier 'exit' on Mac. Fix segfault when reporting implicit outputs error Update travis config; require clang-format to pass Run clang-format Bug: 122270019 Test: upstream Test: aosp-build-tools forrest build Change-Id: I8639b4c04fe0bf0ea64fb1b801f2e25c69c913e1
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