We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
In the help, i can find:
2.21 Minimizing compilation build time with parallel make If you are using a makefile-based build environment, you could consider using a make tool that can apply some form of parallelism to minimize compilation build time.
Even on a single machine with a single processor, a performance boost can be achieved. This is because running processes in parallel can hide the effects of network delays and general I/O accesses such as loading and saving files to disk, by fully utilizing the processor during these times with another compilation process. If you have multiple processor machines, you can extend the use of parallelism with make -j N * M, where M is the number of processors.
Where i put the option '-j N * M' for make ?
Thanks
On the command line when you run make from the console?
No, in uVision 5.12
Some ideas ??
"If you are using a makefile-based build environment,..."
Is your build process using make? I suspect it's not, and that's the root of your problem.
The syntax is -j4 for 4 jobs per iteration.
www.gnu.org/.../Parallel.html
"">www.google.com/search
For a perspective on make and Unix tools :
" href= "http://www.amazon.com/Managing-Projects-Make-Nutshell-Handbooks/dp/0596006101/ref=sr_1_1?s=books&ie=UTF8&qid=1412608298&sr=1-1&keywords=gnu+make"> www.amazon.com/.../ref=sr_1_1
www.amazon.com/.../ref=sr_1_4
www.amazon.com/.../ref=sr_1_3
www.amazon.com/.../ref=sr_1_1
AWK might be particularly helpful processing dependency and project files generated by Keil, et al