Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I've been trying to get dynamic libraries to work in my XCode project under Mac OSX. So far no joy.

I am able to load the dylib file, but when I call dlsym to get the function pointer, it returns 0 and dlerror says symbol not found.

So I am wondering if there is a simple way to list the symbols that are exported from a dylib file. Any ideas would be great.

share|improve this question

2 Answers

up vote 11 down vote accepted

man 1 nm

http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/nm.1.html

share|improve this answer
Thanks, just what I needed. – Gerald Dec 22 '10 at 5:26

Use otool:

otool -TV your.dylib

OR

nm -g your.dylib
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.