Date: Thu, 12 Jan 1995 23:57:56 +0900 From: Stephen Turnbull To: djgpp AT sun DOT soe DOT clarkson DOT edu, Eric DOT Nicolas AT iota-eso DOT u-psud DOT fr Subject: Questions... about gcc, libgrx, sword > So the question is : How can I remove those debug info from > .OUT file, strip > or how can I compile without produce those debug infos ? remove the -g option on your gcc commandline Well, yes and no. "-g" does add *more* debug info (line numbers and source file and so on, right?) but the symbol table is always there, I believe. Anyway, if you strip a program which is compiled without "-g", it gets smaller. --Steve