commit | 5489b9dc4248accdd5cac136511e9aa93a9eed30 | [log] [tgz] |
---|---|---|
author | Matthias Maennich <[email protected]> | Mon Jul 05 23:24:13 2021 +0100 |
committer | Liz Kammer <[email protected]> | Thu Jul 08 11:30:11 2021 -0400 |
tree | b57243eb70a0753a6bf7a1d6e1048bd591e5999f | |
parent | e8360616137dcc527962af63db8e306b6ed45c78 [diff] |
ScopedFrame: remove problematic move constructor The move constructor was implemented as a copy constructor. While technically still correct, it creates an unusual interface as the moved-from object is still perfectly valid. The way the destructor is implemented, this would have created issues. Luckily, this constructor was so far never used. Hence, remove it and remove the redundant deletions of the copy- and assign-constructurs as they are implicitly deleted if a move constructor is specified. 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.