I have several .o files and want to bundle them in a .dylib, how can I do that it Mac OS X using gcc? Thank you very much.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Use g++ -dynamiclib -undefined suppress -flat_namespace *.o -o something.dylib

link|improve this answer
Many thanks for coming back to answer your own question! – John Clements Nov 15 '10 at 22:59
Thanks, these were just the details I needed to port a library to OSX. – dubiousjim Jun 2 '11 at 17:54
Thanks! How did you figure this out? Good tutorial or book somewhere? – z5h Jun 17 '11 at 3:30
feedback

Your Answer

 
or
required, but never shown

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