Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What can influence Delphi executable size?

I have the very same delphi version, bpls, components, everything. And yet in three machines the resulting executables are different in size. What else can influence in the size of the exe?

In my machine I get this size (Vista 6.0.6001):

4.547.584 bytes

In my colleague's machine, he gets (XP 5.1.2600 SP3):

4.530.688 bytes

In a third colleage, he gets: (XP 5.1.2600 SP2)

4.527.104 bytes

Does the OS version influence in the compiled exe size?

like image 393
Ricardo Acras Avatar asked Nov 11 '08 17:11

Ricardo Acras


1 Answers

It would seem that it is configuration differences, or if maybe you have different versions of components installed between the three machines. I would suggest creating a blank form and trying it on all 3 after you verify that the build settings are the same. If that is the same then add some 3rd party components until you find the one that is different.

Additionally you may have a different version of Delphi (major or minor/update version).

like image 182
Jim McKeeth Avatar answered Oct 25 '22 04:10

Jim McKeeth