You don't mention what OS your tool chain is on?
If you're on Windows, double check that your build directories are excluded from your anti-virus scanning - when I was working on firmware at Intel, adding our build directory to the AV exclusion list gained us about 20-30% performance boost.
My other suggestion is to use performance monitoring tools to characterize what are your current bottlenecks - compile toolchains can have different bottlenecks depending on the tools you're using, and how the compiler is written. Check your memory, disk IO, and CPU utilization.
In my current job, we have a mix of tools that run on each build. Some, like the compiler seem to be constrained either CPU, or disk IO (largely based on how many dependencies a particular object has). Others, like our static analysis tools are primarily constrained by CPU.
Also check how many concurrent builds your toolchain allows - some build tools (gmake, etc) allow you to specify a flag to concurrently build things (though
this can cause issues if your dependencies aren't good). It's always nice to get a free boost if you can turn on concurrent builds
Good luck!