Minimizing compilation build time with a single armcc invocation

The following type of script incurs multiple loads and unloads of the compiler and multiple license checkouts:

armcc file1.c ...
armcc file2.c ...
armcc file3.c ...

Instead, you can try modifying your script to compile multiple files within a single invocation of armcc. For example, armcc file1.c file2.c file3.c ...

For convenience, you can also list all your .c files in a single via file invoked with armcc -via sources.txt.

Although this mechanism can dramatically reduce license checkouts and loading and unloading of the compiler to give significant improvements in build time, the following limitations apply:

Show/hideSee also

Copyright © 2010-2012 ARM. All rights reserved.ARM DUI 0472G
Non-ConfidentialID021412