Compiling libogg + libvorbis for iOS
I am trying to update an app, but it requires compiling libogg and libvorbis for iOS since the SDK is new and requires a recompilation.
No instructions were included. Does anyone know how to compile these two libraries for iOS?
Thanks开发者_如何学Go!
Since libogg and libvorbis don't include any iOS specific build tools this is what I would do:
- Download both projects.
- Take a look at the static Mac OS X targets and re-create iOS versions of them.
- Copy any header files you need plus your new static libraries into your project.
No guarantee this will work but it "should".
精彩评论