EXE, Resource and Code Reduction - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T07:12:26Zhttp://stackoverflow.com/feeds/question/416049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/416049/exe-resource-and-code-reduction4EXE, Resource and Code ReductionJlouro2009-01-06T10:35:04Z2009-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#4160580Answer by David Schmitt for EXE, Resource and Code ReductionDavid Schmitt2009-01-06T10:39:25Z2009-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#4160638Answer by cgreeno for EXE, Resource and Code Reductioncgreeno2009-01-06T10:42:07Z2009-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#4160992Answer by Riho for EXE, Resource and Code ReductionRiho2009-01-06T10:54:31Z2009-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#41610310Answer by Gamecat for EXE, Resource and Code ReductionGamecat2009-01-06T10:55:17Z2009-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#4161066Answer by mghie for EXE, Resource and Code Reductionmghie2009-01-06T10:56:05Z2009-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#4161234Answer by mghie for EXE, Resource and Code Reductionmghie2009-01-06T11:05:25Z2009-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#4162403Answer by Harriv for EXE, Resource and Code ReductionHarriv2009-01-06T11:53:41Z2009-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#4162712Answer by Jim McKeeth for EXE, Resource and Code ReductionJim McKeeth2009-01-06T12:04:17Z2009-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#4163251Answer by birger for EXE, Resource and Code Reductionbirger2009-01-06T12:27:09Z2009-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#4171933Answer by PatrickvL for EXE, Resource and Code ReductionPatrickvL2009-01-06T16:24:55Z2009-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#4172473Answer by Roddy for EXE, Resource and Code ReductionRoddy2009-01-06T16:37:55Z2009-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#4172822Answer by JosephStyons for EXE, Resource and Code ReductionJosephStyons2009-01-06T16:49:30Z2009-01-06T16:49:30Z<pre><code>Project -> Options -> Compiler:
===============================
Optimization ON
Debug Information OFF
Local Symbols OFF
Reference Info OFF
Use debug DCUs OFF
Project -> Options -> 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#7898450Answer by Marco V for EXE, Resource and Code ReductionMarco V2009-04-25T22:28:22Z2009-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>