My company has been running a large project on Delphi for more than a decade. Our codebase has been growing over the years and now stands at around 4 million lines of code. Comp
If you build your application, here are some tricks to speed up the process:
del *.dcu /s
);Delphi 2007 should compile faster than Delphi 2006.
Delphi 2009/2010/XE would probably be slower: from user experiment, the implementation of generics and new RTTI made the compilation process more complex, and the actual implementation was found out to be slower e.g. than with Delphi 2007.
Update:
Did you try enabling the ProjectClearUnitCacheItem hidden menu entry?
I've this entry enabled either by the CnPack, either by DDevExtension (I don't know which one do this, probably the later). This could be used to clear the internal unit cache.