Linux指令解压一个.a文件报错is a fat file (use libtool(1) or lipo(1) and ar(1) on it)

Linux  使用终端指令 ar x /Users/apple/Desktop/libWC_LIB_SDKT.a

解压一个文件 报错如图所示:

是因为该.a文件包含了多个cpu架构,比如armv7,armv7s,arm64等,此时可以用如下命令

首先需要判断当前.a文件包含了 那些CPU架构,使用指令:

otool -Vf /Users/apple/Desktop/libWC_LIB_SDKT.a 结果如图所示:

Linux指令解压一个.a文件报错is a fat file (use libtool(1) or lipo(1) and ar(1) on it)_第1张图片

然后此时使用指令分别进行如下操作:

lipo xx. a -thin armv7 -output xx_armv7.a

lipo lxx. a -thin arm64 -output xx_armv64.a

如图所示

Linux指令解压一个.a文件报错is a fat file (use libtool(1) or lipo(1) and ar(1) on it)_第2张图片

然后上图所示的最后两步操作 是合并这三个静态库文件。

yanbo-LuckydeMacBook-Pro:hb apple$ ar rc libwc_LIB_HB.a *.o

yanbo-LuckydeMacBook-Pro:hb apple$ ranlib libwc_LIB_HB.a

你可能感兴趣的:(Linux指令解压一个.a文件报错is a fat file (use libtool(1) or lipo(1) and ar(1) on it))