When compiling Android, we often command
Make Flashfiles-j8
-J8 represents 8 threads of the system to compile
However, the log will be printed directly in the standard output, will not be full, and because it is 8 threads, it will cause the order of log is chaotic
So when we compile once (most of the files have been compiled, the next compilation will skip, saving most of the time)
Choose the following command to compile better:
Nohup make Flashfiles-j1
Log is stored in the "nohup" file in the current directory, and the-J1 parameter specifies that only 1 threads are compiled, and the log order is not chaotic, so that we can troubleshoot compilation errors.
Add:
In general, we need to look at the error message in the log, if the steps are correct, the general error is a lack of dependency, so that we have nothing to install what.
Tips for troubleshooting Android compilation errors