Mail Archives: djgpp/1997/02/23/05:25:37
On Sat, 22 Feb 1997, David Jenkins wrote:
> I've used the -s option it works great.
>
> But strip I don't understand.
> From what I can gather it works at the intermediate compiler stage on
> the pre assmebled source???
> In short "How does it work????"
gcc -s and `strip' are just 2 different ways to do the same thing. When
you invoke gcc with -s, it just strips the debugging symbols before
converting the program to DOS-style .exe program. `strip' is a
stand-alone program that does the same.
- Raw text -