scaoping 发表于 2016-1-2 08:54:15

MacDev.GetArchOfLibrary

1. static library
How to check target architecture of a static library
http://changhoward.blogspot.com/2012/03/how-to-check-target-architecture-of.html
For Mac OS:
   Use lipo.
   Ex. lipo -info staticLibrary.a
For Linux OS:
   Use file
   Ex. file staticLibrary.c
在Mac OS上file也是支持的。

2. dynamic library
页: [1]
查看完整版本: MacDev.GetArchOfLibrary