[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]

RE: [XaraXtreme-dev] Dependencies



Biasgain.h contains CProfileBiasGain - it's not a control but a class
representing a function (a combination of gamma/sigma functions). It's used
outside biasgain gadget/dialog, though 200 files to recompile are probably
far too many.

Mike.


-----Original Message-----
From: owner-dev@xxxxxxxxxxxxxxxx [mailto:owner-dev@xxxxxxxxxxxxxxxx] On
Behalf Of Alex Bligh
Sent: Thursday, June 08, 2006 8:47 AM
To: xara-dev
Cc: Alex Bligh
Subject: [XaraXtreme-dev] Dependencies

I am writing a script call gendeps.pl which analyses what files depend
on other (in an attempt to improve build times). It will tell you
what files depend on a given file, or what a given file depends
on.

Here are some stats - the output of
   Scripts/gendeps.pl -n -i all*/.deps/*.Po | sort -nr

The format is
  <number> <file>
on each line, where <number> is the number of rebuilds that we'd
get from touching <file>.

The ones at the top are all in the pch - they cause everything to
rebuild (all 538 files).

So, interesting questions arise, like "why is arrows.h in the .pch".
And even better, "why does changing biasgain.h cause an automatic
rebuild of over 200 files when it's just a control". I suspect
the answer is "because someone didn't know about forward references"
but in any case I'm going to improve the tool so it will actually
go through the files and find the tree of includes if you ask
it nicely.

Alex