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
Post a Comment