EXE, Resource and Code Reduction - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T07:12:26Z http://stackoverflow.com/feeds/question/416049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction 4 EXE, Resource and Code Reduction Jlouro 2009-01-06T10:35:04Z 2009-06-01T19:11:37Z <p>How can I reduce resources inside my application? I have tried a number of tricks I have reduce and rewritten code, reduce line number, Reduce comments, Compressed the final EXE, but this is not the way I want to go, Improve the variable type cast, Remove ICONs,BMP,JPG, from inside the application I need my applications to be as small as possible on the final EXE and in general resource consumption. Any more ideas, any good articles on this subject Thanks</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416058#416058 0 Answer by David Schmitt for EXE, Resource and Code Reduction David Schmitt 2009-01-06T10:39:25Z 2009-01-06T10:39:25Z <p>Use a memory profiler like <a href="http://www.red-gate.com/products/ANTS_Profiler/memory_profiling.htm" rel="nofollow">the one from Red Gate</a> to get a real time view into the run-time memory usage.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416063#416063 8 Answer by cgreeno for EXE, Resource and Code Reduction cgreeno 2009-01-06T10:42:07Z 2009-03-02T15:52:13Z <p>I would not spend any time removing comments the compiler strips them out anyway</p> <p>You could reference your images from an external service(eg Amazon S3)</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416099#416099 2 Answer by Riho for EXE, Resource and Code Reduction Riho 2009-01-06T10:54:31Z 2009-01-06T10:54:31Z <p>Is it really worth all this trouble? We are not living in 640 KB memory times anymore.</p> <p>If you want youre EXE to be smaller then use dynamic linking of packages and libraries. That gives most of the boost. Also put all your resources (images,sounds) into separate DLL. You won't save anything by deleting comments and writing all your code in one long line.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416103#416103 10 Answer by Gamecat for EXE, Resource and Code Reduction Gamecat 2009-01-06T10:55:17Z 2009-01-06T10:55:17Z <p>What about switching debug information off in the project options:</p> <ul> <li>no debug info</li> <li>no runtime checks</li> <li>reduce number of external units uses if possible.</li> </ul> <p>But debug info kan be a major killer.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416106#416106 6 Answer by mghie for EXE, Resource and Code Reduction mghie 2009-01-06T10:56:05Z 2009-01-06T10:56:05Z <p>Put any images that the program uses more than once into image lists or TGraphic components, and put those into a data module. Link all your components using these glyphs to the image lists. If you use the Object Inspector to add the same glyph to several components you will end up with multiple copies of it, increasing both your loading time and your executable and working set size.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416123#416123 4 Answer by mghie for EXE, Resource and Code Reduction mghie 2009-01-06T11:05:25Z 2009-01-06T15:52:01Z <p>Do not create all forms automatically, even though Delphi gives you the option now, and did this unconditionally for new forms in earlier versions. Only create the main form, and use the following (pseudo) code for the showing of modal dialogs:</p> <pre><code>procedure TMainForm.OptionDialog(Sender: TObject); var Dlg: TOptionDialog; begin Dlg := TOptionDialog.Create(nil); try // prepare dialog if Dlg.ShowModal = mrOK then begin // apply changed settings end; finally Dlg.Free; end; end; </code></pre> <p>This will shorten application loading time and reduce your overall resource usage, especially for complex dialogs with many controls.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416240#416240 3 Answer by Harriv for EXE, Resource and Code Reduction Harriv 2009-01-06T11:53:41Z 2009-01-06T11:53:41Z <p>Drop the VCL and use KOL and MCK: <a href="http://kolmck.net/" rel="nofollow">http://kolmck.net/</a></p> <p>This is radical and very big change, but will get the exe size down.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416271#416271 2 Answer by Jim McKeeth for EXE, Resource and Code Reduction Jim McKeeth 2009-01-06T12:04:17Z 2009-01-06T12:04:17Z <p>Typically speaking if you want a smaller EXE size then go with an earlier version of Delphi.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/416325#416325 1 Answer by birger for EXE, Resource and Code Reduction birger 2009-01-06T12:27:09Z 2009-01-06T12:27:09Z <p>I always use <a href="http://upx.sourceforge.net/" rel="nofollow">UPX</a> to compress exe files. It works perfectly, often resulting in a factor 2 compression. And, of course, disable all the debug info will help reduce file size.</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/417193#417193 3 Answer by PatrickvL for EXE, Resource and Code Reduction PatrickvL 2009-01-06T16:24:55Z 2009-01-06T16:24:55Z <p>A nice trick to reduce executable size (actually, PE-image size, as this applies to DLL's too), when <a href="http://en.wikipedia.org/wiki/Relocation_(computer_science)" rel="nofollow">relocation</a> is not an issue : </p> <p>Leave the relocation-info out! </p> <p>In Delphi, you could do it like this :</p> <pre><code>// Remove relocation table (generates smaller executables) : // (See http://hallvards.blogspot.com/2006/09/hack12-create-smaller-exe-files.html) {$SetPEFlags 1} // 1 = Windows.IMAGE_FILE_RELOCS_STRIPPED </code></pre> <p>Cheers!</p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/417247#417247 3 Answer by Roddy for EXE, Resource and Code Reduction Roddy 2009-01-06T16:37:55Z 2009-01-06T16:37:55Z <p>Measure first, THEN optimise. How big is your application, and how big would you like it to be?</p> <p>Are you concerned about...</p> <p>The size of the application .EXE file on disk? Then...</p> <ul> <li>Build with runtime packages <strong>on</strong>. You'll get a tiny .EXE, but will need to distribute .bpls as well.</li> </ul> <p>The RAM memory used by the application? Then...</p> <ul> <li>Build with runtime packages off - the linker will omit most unused parts of packages.</li> </ul> <p>The size of the application installer? Then...</p> <ul> <li>Build with runtime packages <strong>off</strong></li> <li>Use Inno Setup</li> <li>Most of the suggestions above? </li> </ul> <p>The size of the application PLUS PACKAGES/DLLS after installation? Then...</p> <ul> <li>Build with runtime packages <strong>off</strong>, and use UPX</li> </ul> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/417282#417282 2 Answer by JosephStyons for EXE, Resource and Code Reduction JosephStyons 2009-01-06T16:49:30Z 2009-01-06T16:49:30Z <pre><code>Project -&gt; Options -&gt; Compiler: =============================== Optimization ON Debug Information OFF Local Symbols OFF Reference Info OFF Use debug DCUs OFF Project -&gt; Options -&gt; Packages: =============================== Build with runtime packages ON (but you will have to distribute your BPLs!) Note to non-delphi folks: a BPL is just a DLL, but with magic Delphi dust to make it easier to use. </code></pre> <p><a href="http://delphi.about.com/od/objectpascalide/a/bpl_vs_dll.htm" rel="nofollow">This article may be useful to you.</a></p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/789845#789845 0 Answer by Marco V for EXE, Resource and Code Reduction Marco V 2009-04-25T22:28:22Z 2009-04-25T22:28:22Z <p>And have a look at <a href="http://wiki.freepascal.org/Size_Matters" rel="nofollow">http://wiki.freepascal.org/Size_Matters</a></p>