Delphi 7 compile getting slower over time? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:25:46Z http://stackoverflow.com/feeds/question/1138323 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1138323/delphi-7-compile-getting-slower-over-time 2 Delphi 7 compile getting slower over time? Atlas 2009-07-16T15:13:02Z 2009-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#1138375 1 Answer by Asmodon for Delphi 7 compile getting slower over time? Asmodon 2009-07-16T15:19:04Z 2009-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#1138396 6 Answer by Bruce McGee for Delphi 7 compile getting slower over time? Bruce McGee 2009-07-16T15:22:55Z 2009-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#1139351 0 Answer by Paul-Jan for Delphi 7 compile getting slower over time? Paul-Jan 2009-07-16T18:18:25Z 2009-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#1139915 0 Answer by Fabricio Araujo for Delphi 7 compile getting slower over time? Fabricio Araujo 2009-07-16T19:55:15Z 2009-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#1169778 0 Answer by Robo for Delphi 7 compile getting slower over time? Robo 2009-07-23T05:32:45Z 2009-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#1176921 0 Answer by Bruce McGee for Delphi 7 compile getting slower over time? Bruce McGee 2009-07-24T10:51:38Z 2009-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#1177935 0 Answer by Peter Turner for Delphi 7 compile getting slower over time? Peter Turner 2009-07-24T14:08:26Z 2009-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>