20 Sep
2008
20 Sep
'08
5:31 a.m.
On Fri, Sep 19, 2008 at 04:20:25PM +1000, David Philp wrote:
strip has no -g option on OS X. Unfortunately I don't understand what
It seems that -S is the correct option to use on OS X: -S Remove the debugging symbol table entries (those created by the -g option to cc(1) and other compilers). -x Remove all local symbols (saving only global symbols). Try running first strip -S, and then strip -S -x, and see whether it has any effect on the working of your program. (Strip -S -x will remove more than just -S).