Other Parts Discussed in Thread: HALCOGEN
This tip isn't anything 'new' but it's not the default setting and it makes a big difference for me so thought I'd pass it on.
Since CCS uses gmake to build, if you have a recent computer (multicore CPU) you can set the build parallelism by adding the -jN option to your command line. Uncheck 'Use default build command' in the project properties 'Build' / Builer tab and change the command line to something like:
${CCS_UTILS_DIR}/bin/gmake -j4 -k
Which works for my 2 core 4 thread i5. It cuts down a HalCoGen project build (rebuild all) time from about 1:50 to 0.45.
Wish I had an i7 :)