commit | 7efba330bb7de94a6399cce1a83f7f5659e3744e | [log] [tgz] |
---|---|---|
author | Matthias Maennich <[email protected]> | Wed Jun 30 15:57:46 2021 +0100 |
committer | Matthias Maennich <[email protected]> | Wed Jun 30 17:28:14 2021 +0100 |
tree | 879a27931caed892697e31284817fde4fb3a332b | |
parent | e683259e96a92dee5a918542ee1b307c5c7523c5 [diff] |
strutil: replace SkipUntil by calls to strcspn What SkipUntil does is to return the length of the longest string that does not match any delimiter characters. That is precisely what strcspn does (except that SkipUntil was treating \0 like any other character). For the use cases that we have, we can assume that we are not interested in anything beyond a null terminator of a string. Hence, replace all uses of SkipUntil with equivalent strcspn invocations. 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.