How to invoke “.so” file in xcode

自作多情 提交于 2019-12-11 07:06:37

问题


How to invoke(call) ".so" file in xcode? these ".so" files are all writen in standard C.(C99). Anyone help.....


回答1:


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.



来源:https://stackoverflow.com/questions/5201241/how-to-invoke-so-file-in-xcode

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!