During "make" process for AOSP build, Can I check a progress ratio?

578 views Asked by At

I'm building aosp. But I can't know a that's progressratio. Does "make" have a option for checking progress ratio?

1

There are 1 answers

0
odexcide On BEST ANSWER

While there is no standard way to monitor the build progress, I find that checking the size of out/ to be the easiest; however, that will require you know the size of a full built out directory after you build already once.

The easy way:

du -hs out

The fun way:

sudo apt-get install figlet

while true; do clear;figlet $(du -hs out | cut -f1);sleep 1; done