博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何查看库信息与合并库
阅读量:4971 次
发布时间:2019-06-12

本文共 1092 字,大约阅读时间需要 3 分钟。

1.打开终端,执行如下命令:

  $ lipo -info path

  $ lipo -create path path -output newpath

2.示例:

1 $ lipo -info /Users/***/Desktop/Release-iphoneos/DemoFramework.framework/DemoFramework 2 Architectures in the fat file: /Users/***/Desktop/Release-iphoneos/DemoFramework.framework/DemoFramework are: armv7 arm64 3  4 $ lipo -info /Users/***/Desktop/Release-iphonesimulator/DemoFramework.framework/DemoFramework 5 Architectures in the fat file: /Users/***/Desktop/Release-iphonesimulator/DemoFramework.framework/DemoFramework are: i386 x86_64 6  7 $ lipo -create /Users/***/Desktop/Release-iphoneos/DemoFramework.framework/DemoFramework /Users/***/Desktop/Release-iphonesimulator/DemoFramework.framework/DemoFramework -output /Users/***/Desktop/Release/DemoFramework 8  9 $ lipo -info /Users/***/Desktop/Release/DemoFramework10 Architectures in the fat file: /Users/***/Desktop/Release/DemoFramework are: i386 x86_64 armv7 arm64 

3.注意:

  a) path可以通过把文件拖入终端中获得;

  b) 如果是.a文件,path就是.a的路径;如果是.framework,path是framework里面的那个路径;

  c) 最后找到newpath下生成的库替换之前的库文件就行。

转载于:https://www.cnblogs.com/pinweyshg/p/5622827.html

你可能感兴趣的文章
路由器与交换机的区别与联系
查看>>
hdu 1787 GCD Again
查看>>
Linux内核升级
查看>>
西交利物浦大学Java PAPER CODE: CSE105/12-13/S1/Resit Coursework
查看>>
简单的排序算法入门学习
查看>>
linux curl命令
查看>>
每日scrum(五)
查看>>
数据库——MySQL——存储引擎
查看>>
BZOJ4435 : [Cerc2015]Juice Junctions
查看>>
echarts实现中国地图数据展示
查看>>
2、Spring Boot 2.x 快速入门
查看>>
axios设置application/x-www-form-urlencoded
查看>>
NetworkManager——Linux强大的网络管理工具
查看>>
两天快速开发一个自己的微信小程序
查看>>
基于百度地图api + AngularJS 的入门地图
查看>>
jQuery Mobile的默认配置项具体解释,jQuery Mobile的中文配置api,jQuery Mobile的配置说明,配置大全...
查看>>
JAVA NIO 简介
查看>>
如何学习编译原理
查看>>
第五次作业
查看>>
(四期)简单添加TableViewCell的3D动画效果
查看>>