Delphi 7 compile getting slower over time? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:25:46Zhttp://stackoverflow.com/feeds/question/1138323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time2Delphi 7 compile getting slower over time?Atlas2009-07-16T15:13:02Z2009-07-24T14:08:26Z
<p>My project has around 400 units, it takes 20-40secs to compile after a fresh reboot, then than <strong>1-5secs</strong> for sub-sequent re-compiles, so far so good.</p>
<p>After working for over 3-6 hours, compiling takes <strong>1-3mins</strong> for sub-sequent re-compiles, which forces me to reboot everytime.</p>
<p>Is there a leak somewhere in D7? Is it problem of Windows XP? It's getting very frustrating...</p>
<p>Anybody encountered this problem?</p>
<p><strong>Edit1</strong>
DelphiSpeedup doesn't seem to improve the problem, it still occurs....</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1138375#11383751Answer by Asmodon for Delphi 7 compile getting slower over time?Asmodon2009-07-16T15:19:04Z2009-07-16T15:19:04Z<p>Our biggest Delphi app does take awhile to compile, but I haven't noticed it taking longer for subsequent re-compiles.</p>
<p>Here is one person's solution, but it sounds like a shot in the dark:
<a href="http://groups.google.com/group/borland.public.delphi.ide.general/msg/9b8150342943e5d2" rel="nofollow">http://groups.google.com/group/borland.public.delphi.ide.general/msg/9b8150342943e5d2</a></p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1138396#11383966Answer by Bruce McGee for Delphi 7 compile getting slower over time?Bruce McGee2009-07-16T15:22:55Z2009-07-16T15:22:55Z<p>Older versions of Delphi have known performance problems compiling in the IDE (as compared to the command line), including lots of unnecessary file access.</p>
<p><a href="http://andy.jgknet.de/blog/?page%5Fid=8" rel="nofollow">Delphi Speedup</a> fixes some problems in the IDE, including improvements for compiling, linking and Map file creation. It might help in your situation.</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1139351#11393510Answer by Paul-Jan for Delphi 7 compile getting slower over time?Paul-Jan2009-07-16T18:18:25Z2009-07-16T18:18:25Z<p>When Delphi compilation starts to slow down, take a look at the memory usage. In general, <em>some stuff</em> inside the IDE leaks (my personal favorite culprits are find-in-files and coderush search), and after a couple of hours of working, you just might end up with a enough memory allocated to really start slowin things down.</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1139915#11399150Answer by Fabricio Araujo for Delphi 7 compile getting slower over time?Fabricio Araujo2009-07-16T19:55:15Z2009-07-16T19:55:15Z<p>This question is similar to <a href="http://stackoverflow.com/questions/920560/delphi-how-to-organize-source-code-to-increase-compiler-performance">that one</a>. Avoiding circular references would help a lot.
DelphiSpeedUp, as stated above, also helps.</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1169778#11697780Answer by Robo for Delphi 7 compile getting slower over time?Robo2009-07-23T05:32:45Z2009-07-23T05:32:45Z<p>Wow, Delphi SpeedUp is quite impressive, test result:</p>
<p>Complete build of project:</p>
<p>Before: 1min15sec</p>
<p>After: 45sec</p>
<p>Compile project (no changes to source, simply opened the project and compile)</p>
<p>Before: 1min</p>
<p>After: 20sec</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1176921#11769210Answer by Bruce McGee for Delphi 7 compile getting slower over time?Bruce McGee2009-07-24T10:51:38Z2009-07-24T10:51:38Z<p>If the problem still persists after installing DelphiSpeedup, try removing any third party IDE plugins and see if that helps.</p>
<p>You could also check to see if any of your library paths either don't exist or are on mapped/network drives. These will slow down compiling, but I'm not sure if they cause it to get slower over time.</p>
http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time/1177935#11779350Answer by Peter Turner for Delphi 7 compile getting slower over time?Peter Turner2009-07-24T14:08:26Z2009-07-24T14:08:26Z<p>I've noticed this too and it seems to be directly related to the number of Exceptions you get when you close Delphi. I don't generally need to reboot the computer to get back up to speed.</p>
<p>My advice would be to go into the the Environment Options and turn on the Autosave options so that you can restart Delphi and not take a million years to find what you had open. I have to do this because my debugger only seems to work for about an hour. </p>