如何调用“.so” xcode 中的文件
如何在 xcode 中调用(调用)“.so”文件? 这些“.so”文件都是用标准C.(C99)编写的。 任何人都可以帮忙......
How to invoke(call) ".so" file in xcode?
these ".so" files are all writen in standard C.(C99).
Anyone help.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 对动态库使用文件扩展名“.dylib”。它们与其他类 Unix 操作系统中使用的“.so”共享对象库非常相似,并且与 Windows 上的“.dll”动态链接库非常相似。
大多数 .so 库采用 ELF 格式(Linux 和许多其他 POSIX 系统使用),而 Mac 库采用 Mach-O 格式。所以,它们绝对是不兼容的。
Apple uses the file extension ".dylib" for dynamic libraries. They are very similar to ".so" shared-object libraries used in other Unix-like operating systems, and are a cousin to ".dll" dynamic link libraries on Windows.
Most .so libraries are in ELF format (used by Linux and many other POSIX systems) whereas Mac libraries are in Mach-O format. So, they are most definitely incompatible.