20 Jul
2009
20 Jul
'09
8:42 p.m.
"ndgs" == ndgs
writes:
ndgs> After I compile my file with g++ using the -s flag all that is ndgs> striped out are my own variable names. I used xxd to look a ndgs> the compiled output and "boost" is still all over the binary. ndgs> How can I remove them? run strip on the final executable: stripping individual files doesn't help if the libraries you're linking against are not stripped. OTH, Maurizio