开发者

How to invoke ".so" file in xcode

开发者 https://www.devze.com 2023-02-15 11:15 出处:网络
How to invoke(call) \".so\" file in xcode? these \".so\" files are all开发者_如何学Python writen in standard C.(C99).

How to invoke(call) ".so" file in xcode? these ".so" files are all开发者_如何学Python writen in standard C.(C99). Anyone help.....


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消