ios - Convert Xcode FAT static library to regular static library? -


gameclosure distrubutes precompiled spidermonkey ios. problem use fat static library. , tools using on jb iphone cannot recognize such library.

fat library has 2 libraries inside, 1 simulator (i386) , 1 iphone (arm). there way extract arm version , save regular static library?

ps. used compile on iphone, not want go xcode.

you can use "lipo" tool extract 1 architecture, e.g.

 lipo -thin armv7 -output spidermonkey-armv7.a spidermonkey.a 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -