Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This would probably be achieved in the linking stage of the GCC compiler? But are there any specific references on this stage?

Also, is there a tool that can perform code size reduction by knowing which pieces of code isn't called?

share|improve this question

1 Answer

up vote 0 down vote accepted

You can compress the final size of your executable using tools like:

  • UPX - Ultimate Packet for eXecutables (Great tool for shrinking any object code file e.g. .exe, .dll, .elf)

Here are a few references regarding stripping code during the gcc/ld compilation or linking phases:

So I imagine this has to be done on a code level and can't be done on compiled code in the way that Java bytecode can be worked with...

share|improve this answer
For the obfusication aspect of ProGuard take a look at the answers to this related question: stackoverflow.com/questions/1025494/obfuscating-c-c-code – Rian Sanderson Nov 16 '11 at 21:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.