commit | d570f214b76beac77ecfd287822cc4f7a690f7c4 | [log] [tgz] |
---|---|---|
author | Po Hu <hupo1985@gmail.com> | Sat Jun 25 09:08:54 2016 +0800 |
committer | Shinichiro Hamaji <shinichiro.hamaji@gmail.com> | Sat Jun 25 11:12:29 2016 +0900 |
tree | 3d849db48afb863f268b175501507f4a47f5480f | |
parent | 6957e9aa7ceb33fa4308536632b4b28e1fa9966f [diff] |
[C++] Allow pass command line variables from make to ckati They will be preserved in MAKEFLAGS as environment variable. TODO: Set MAKEFLAGS as file variable instead of environment. $ cat Makefile VAR := FAIL $(info VAR=$(VAR),$(origin VAR)) $(info MAKEFLAGS=$(MAKEFLAGS),$(origin MAKEFLAGS)) all: @ckati last last: @echo $@ $ make VAR=PASS VAR=PASS,command line MAKEFLAGS=,file VAR=PASS,command line MAKEFLAGS=VAR=PASS,environment last
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.
Now AOSP has kati and ninja, so all you have to do is
% export USE_NINJA=true
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 # Use --goma if you are a Googler. % ./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