commit | 371194da71b3e191fea6f2ccceb7b061bd0de310 | [log] [tgz] |
---|---|---|
author | Matthias Maennich <[email protected]> | Fri Sep 03 17:14:35 2021 +0100 |
committer | lberki <[email protected]> | Mon Sep 06 15:09:55 2021 +0200 |
tree | bba760f4e1389b30e5cb3056cdbc934356e4e87b | |
parent | b097553ded5e2f60872c915ac5a1d00981108c22 [diff] |
fileutil: improve cache handling of file globs Avoid needless allocations by letting the cache vector manage our memory. Further, clarify the interface by passing vectors of glob files by immutable const&. Signed-off-by: Matthias Maennich <[email protected]>
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.
Building:
$ make ckati
The above command produces a ckati
binary in the project root.
Testing (best ran in a Ubuntu 20.04 environment):
$ make test $ go test --ckati $ go test --ckati --ninja $ go test --ckati --ninja --all
The above commands run all cKati and Ninja tests in the testcases/
directory.
Alternatively, you can also run the tests in a Docker container in a prepared test enviroment:
$ docker build -t kati-test . && docker run kati-test
If you are working on a machine that does not provide make
in the same version as kati is currently compatible with, you might want to download a prebuilt version instead. For example to use the prebuilt version of Ubuntu 20.04 LTS:
$ mkdir tmp/ && cd tmp/ $ wget http://mirrors.kernel.org/ubuntu/pool/main/m/make-dfsg/make_4.2.1-1.2_amd64.deb $ ar xv make_4.2.1-1.2_amd64.deb $ tar xf data.tar.xz $ cd .. $ PATH=$(pwd)/tmp/usr/bin/:$PATH make test
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.