Re: bundle project question
Re: bundle project question
- Subject: Re: bundle project question
- From: "Peter O'Gorman" <email@hidden>
- Date: Mon, 18 Oct 2004 23:17:56 +0900
Ivan Kharin wrote:
I'm trying building Mach-O bundle, designed for loading from CFM
application via special thunk CFM-Mach-O.
All working fine, but "nm -n MyProject" inside
MyProject.bundle/Contents/MacOS show me ALL global symbols, not only
symbols listed in MyProject.export
Stripping symbols enabled, "-x" linker option used.
More over -- during build, bundle linked against static C++ library,
and all library symbols visible in "nm -n" output.
This is very bad, because static lib is Crypto++ library, and exposing
crypto stuff to any stranger is not like a good idea for me.
All symbols, global and local, are listed in the symbol table. nm -n will
display all of them, if you want to just display the global symbols, then
use nm -g. Note that it will display undefined symbols as well.
Peter
--
Peter O'Gorman - http://www.pogma.com
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden