Mac 下如何查看静态库支持的架构

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

你可能感兴趣的:(Mac 下如何查看静态库支持的架构)