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.

I want to build a static library for iphone. I want to give my users the .a library which they can use for both simulator test and device test. Do I have to build two library in simulator mode and device mode? Is there any way to build a single one that can be used for both platforms?

share|improve this question

1 Answer

up vote 29 down vote accepted

Compile your library twice. Once using the device SDK, and again using the Simulator SDK.

Then use the lipo command line tool to create a "fat" libary.

lipo -create libdevice.a libsimulator.a -output libcombined.a

That should give you what you need.

share|improve this answer
Thanks for your quick and accurate answer. – iPhoney Jun 8 '10 at 10:11
Is there anything special that needs to be done in the app using the library? I tried doing this with a library I'm making and got errors about architectures not matching when compiling a sample app that uses the library. – pr1001 Aug 22 '10 at 0:07
There isn't anything you need to do to differentiate between the architectures in the 'fat' library. You might see that error if the original libraries weren't built with the correct SDKs before using lipo. – Jasarien Aug 22 '10 at 1:24

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.