码迷,mamicode.com
首页 > 其他好文 > 详细

ar命令提取.a时刻,一个错误 is a fat file (use libtool(1) or lipo(1) and ar(1) on it)

时间:2015-09-24 12:29:14      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

      在减压.a当文件,据报一个类别似 xxx.a is a fat file (use libtool(1) or lipo(1) and ar(1) on it)的错误,经过查找资料,原来是由于该.a文件包括了多个cpu架构,比方armv7,armv7s等,此时能够用例如以下命令:

lipo xx. a -thin armv7 -output xx_armv7.a
lipo lxx. a -thin armv7s -output xx_armv7s.a

能够參考:ar : is a fat file (use libtool(1) or lipo(1) and ar(1) on it)

然后再使用,ar -x xx_armv7.a,就能够成功的解压出各个.o了。

假设还想查看.o的反编译代码,在Mac上能够用otool这个命令来反编译.o文件。比方otool -tv xx.o

能够參考: Mac的反编译工具一:otool (objdump工具的OSX相应工具)。


版权声明:本文博主原创文章,博客,未经同意不得转载。

ar命令提取.a时刻,一个错误 is a fat file (use libtool(1) or lipo(1) and ar(1) on it)

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/4834601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!