# platform_build_kati **Repository Path**: aosp-riscv-bionic-porting/platform_build_kati ## Basic Information - **Project Name**: platform_build_kati - **Description**: archives for https://github.com/aosp-riscv/platform_build_kati.git - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-10-27 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README kati ==== [![Build and Test](https://github.com/google/kati/workflows/Build%20and%20Test/badge.svg)](https://github.com/google/kati/actions) 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. Development ----------- Building: ``` $ make ckati ``` The above command produces a `ckati` binary in the project root. Testing (best ran in a Ubuntu 18.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 ``` How to use for Android ---------------------- 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.