Mark
Mark

Reputation: 7586

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!

Upvotes: 2

Views: 1118

Answers (1)

Patrick Tescher
Patrick Tescher

Reputation: 3447

Since libogg and libvorbis don't include any iOS specific build tools this is what I would do:

  1. Download both projects.
  2. Take a look at the static Mac OS X targets and re-create iOS versions of them.
  3. Copy any header files you need plus your new static libraries into your project.

No guarantee this will work but it "should".

Upvotes: 2

Related Questions