Mac 自带 lipo 命令,可以使用。
如下
lipo -info xx.a
或者
lipo -archs xx.a
栗子1
看一下梆梆加密的 libbangcle_crypto_tool.a 都支持哪些架构
lipo -info libbangcle_crypto_tool.a
输出
Architectures in the fat file: libbangcle_crypto_tool.a
are: armv7 armv7s i386 x86_64 arm64
栗子2
看一下 bugly.framework 都支持哪些架构
lipo -archs Bugly.framework/Bugly
输出
armv7 armv7s i386 x86_64 arm64
网友评论