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?
Thank you, Kamran
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?
Thank you, Kamran
You may use otool for getting that information.
From otool's manpage
Example
Not disagreeing with the other answers, but here's one more option: use the
lipo
command.The Apple man pages for lipo
You can run
lipo -info
on executables, or libraries. Some examples: