Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How much time will it take to build Android OS [closed]

Tags:

android

I was trying to build the Android operating system for Galaxy Nexus. It took 6 hours to build. Is it normal or does it have to do with my machine(MBP Core2Duo) or am I missing something?

like image 792
darwinbaisa Avatar asked Jul 14 '12 09:07

darwinbaisa


1 Answers

This is bit of a memory bound operation. Next time you compile try using more threads

make -j8

or

make -j16

With 12 GB of memory I was able to compile the android source in like 40 mins.

like image 93
Frank Sposaro Avatar answered Nov 14 '22 22:11

Frank Sposaro