命令记录
查看.a包含架构
lipo -info xxxx.a
按架构分离静态库
lipo xxxx.a -thin armv7 -output xxxx.a
在当前目录拆分静态库为目标文件
ar -x xxx.a
将目标文件合并为静态库
libtool -static -o xxxx.a *.o
将不同架构静态库合并为通用静态库
lipo -create xxxxx.a xxx.a -output XXX.a
lipo -info xxxx.a
lipo xxxx.a -thin armv7 -output xxxx.a
ar -x xxx.a
libtool -static -o xxxx.a *.o
lipo -create xxxxx.a xxx.a -output XXX.a