Thanx for all your help....
In article <13bi4ihlq7bbv3d@corp.supernews.com>,
David Wright <David@DavidGrayWright.com> wrote:
With the Whole Program Optimaisation turned off the compile takes 24
minutes
with a quick link (less than one minute).
With the Whole Program Optimisation turned on the compile takes 3 minutes
and the link takes 21 minutes.
Is there anything else that can be done to reduce build time? It seems to
be
the code generation phase whatever that is?
To make things faster, try some of the usual things: (1) toss
faster hardware at the problem, (2) make it do less work. #1 is pretty
obvious -- you should probably be running MS's compilers on a machine
with 2GB of RAM, and a speedy HD -- don't try and put your
source/intermediate/output files on the network. For #2, you can try
dialing down the optimization levels, split the source code into
pieces (.lib/.dll) and do that separately, etc. All optimization is a
game of avoiding unnecessary work.
Nathan Mates
--
<*> Nathan Mates - personal webpage http://www.visi.com/~nathan/
# Programmer at Pandemic Studios -- http://www.pandemicstudios.com/
# NOT speaking for Pandemic Studios. "Care not what the neighbors
# think. What are the facts, and to how many decimal places?" -R.A.
Heinlein