Thread: to reduce footprint

  1. #1
    Registered User
    Join Date
    May 2006
    Posts
    1,579

    to reduce footprint

    Hello everyone,


    I am wondering how to reduce the footprint of a binary build (C/C++) program generated by gcc.

    1. Any ideas of reduce the footprint of a debug version build?
    2. Any ideas of reduce the footprint of a release version build?

    I think some linker or compiler options may help, what are they? Any other ideas to reduce footprint?


    thanks in advance,
    George

  2. #2
    Just Lurking Dave_Sinkula's Avatar
    Join Date
    Oct 2002
    Posts
    5,005
    7. It is easier to write an incorrect program than understand a correct one.
    40. There are two ways to write error-free programs; only the third one works.*

  3. #3
    Registered User Frobozz's Avatar
    Join Date
    Dec 2002
    Posts
    546
    First try stripping the executable. This can be done during compiling by passing -s or after compiling is done by using the command strip (followed with a parameter like --strip-unneeded).

    The second method or step is to use an executable packer. http://www.upx.org/

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. memory footprint of Dictionary
    By George2 in forum C# Programming
    Replies: 1
    Last Post: 05-17-2008, 08:39 AM
  2. Performance and footprint of virtual function
    By George2 in forum C++ Programming
    Replies: 8
    Last Post: 01-31-2008, 07:34 PM
  3. Replies: 7
    Last Post: 11-01-2005, 02:42 PM
  4. can't get this function to reduce fractions
    By bruce in forum C++ Programming
    Replies: 4
    Last Post: 11-13-2002, 01:07 AM
  5. reduce flickering..and more
    By lambs4 in forum Game Programming
    Replies: 7
    Last Post: 01-12-2002, 02:22 PM