本文介绍了iOS:Unix:Mac从静态库中提取有关支持的体系结构的信息.如何?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的Mac上有一个静态库,想知道该库是否是为armV7s架构构建的?是否有任何命令/工具可用于显示此库中受支持的体系结构?

I have a static library on my Mac and curious to know if the lib was built for armV7s architecture or not? Is any command/tools available to show the supported architectures in this library?

谢谢你,卡姆兰

推荐答案

您可以使用otool来获取该信息.

You may use otool for getting that information.

从otool的联机帮助页

From otool's manpage

示例

> otool -L libRaptureXML_universal.a 

Archive : libRaptureXML_universal.a (architecture armv7)
libRaptureXML_universal.a(RXMLElement.o) (architecture armv7):
Archive : libRaptureXML_universal.a (architecture i386)
libRaptureXML_universal.a(RXMLElement.o) (architecture i386):

这篇关于iOS:Unix:Mac从静态库中提取有关支持的体系结构的信息.如何?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 03:35