Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder what is the difference between these two:

gcc -s: Remove all symbol table and relocation information from the executable.

strip: Discard symbols from object files.

Are they having the same meaning? Which one do you use to reduce the size of executable and speed up its running. Really appreciate your detail info.

Thanks and regards!

share|improve this question

2 Answers

up vote 8 down vote accepted

gcc being a compiler/linker, its -s option is something done while compiling and linking. It's also not configurable - it has a set of information which it removes, no more no less.

strip is something which can be run on an object file which is already compiled. It also has a variety of command-line options which you can use to configure which information will be removed. For example, -g strips only the debug information which gcc -g adds.

Note that strip is not a bash command, though you may be running it from a bash shell. It is a command totally separate from bash, part of the GNU binary utilities suite.

share|improve this answer
Thanks! what's the equivalent to gcc -s in terms of strip with some of its options? – Tim Aug 28 '09 at 20:53
Which one do you use to reduce the size of executable and speed up its running. – Tim Aug 28 '09 at 20:54
I think the default behavior of strip is similar to that of gcc -s, but I'm no expert. Wait for another answer if you really need to know. Personally, though, I'd avoid mucking around with anything you don't fully understand in this department. I'm pretty sure you should expect decreased executable size but not significant changes in execution speed. – Jefromi Aug 28 '09 at 21:08

They do similar things, but strip allows finer grained control over what gets removed from the file.

share|improve this answer

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.