dep analysis for 15 cpp files takes 10 seconds !
This is really slow !!!
I guess the reason for this is the usage of xml files fro
storing dependency information.
xml files a good for long time storage but not for short
time.
IMHO it makes no sense to use xml at this point !
You can rebuild the dep-information from the cpp files
whenever you want - dependency information is
intermediate data !
Please store it in "bad-binary" format for fast read / write
access.
If the xml storage is not the time consuming part, then
you should have a look at your dependency analysis
code.
i recently wrote a dependency task for some other types
of files. for example i used a matrix for storing the
depenency-graph. this is pretty fast and not really space
consuming - apart from having 10000 files in your
project !