This is my game making site. I've been making experimental game prototypes for a while now and I will try to release a game every month.

Or visit the Big Archive

January 24, 2010

Why is my file so huge?

My latest game was absolutely huge! And I'm not talking about the music (which was pretty huge too - roughly 20mb) but the little .exe file.

It was 14,6mb!!

Now every way you look at it, that's incredibly huge. It's like comparing an ant to a human. Normally the little ant is the exe file which should be small, except that it's not.


Incredible I thought, what the heck did I do wrong? I mean my code isn't really good but I never knew it was this horrible. So today I was determined to find the cause of this obscene mutant ant.

I started out chopping off everything regarding exceptions, cause all c++ resources I've read say exceptions will take space like a mutant gremlin. Okay I thought and chopped away everything - but nothing happened.

Now that's weird, what happens if I scrap this.. and this.. It ended with me beginning a big revamp of my whole "engine", or rather collection of stuff - nothing inherently wrong as it was badly needed - but nothing happened with my exe file! It was still almost 2mb big with basically only a hello world...

Then it struck me! I had been using -g with gcc and without any optimizing at all. When I turned on size and speed optimizations and scrapped the debugging the change was quite extraordinary.

The mutant 14 637 kb was magically transformed to a more fitting ant size of 856 kb. I couldn't save much of the total file size (23 254 kb -> 20 768 kb) so while I apologize for hogging your bandwidth, time and harddrive space I'm hoping you won't be too mad at me.

Posted by Jonas Hietala in Game Making | Tagged Random, Games

Add a comment:

Name (optional):

Website (optional):

This box should be left empty!

Your comment:

You can also use very simple markdown in your comment.

Use *italic* for italic and
**boldness** gives baldness.

It's really easy to insert a link:
<http://quicklink.com> = http://quicklink.com
[title](http://link.com) = title

Note that the link won't insert any http:// so you'll need to add that yourself.

Double enter will give you a paragraph or
end the line with three or more spaces for a hard break.

Use anything above or their html equivalents.