将路径设置为 Cocoa 应用程序中的 .dylib 路径

发布于 2024-08-23 18:11:13 字数 115 浏览 5 评论 0原文

我正在开发一个 Mac OS X Cocoa 应用程序,并且想要使用多个 .dylib 库。如何设置驻留在我的应用程序文件夹中某处的 .dylib 的路径?如果该路径位于不同计算机上的不同目录中或者根本不存在怎么办?

I'm developing a Mac OS X Cocoa app and want to use several .dylib libraries. How do I set the path to a .dylib which resides somewhere in my Application folder? What if the path resides in different directories on different computers or is not existent at all?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

债姬 2024-08-30 18:11:13

它位于我的应用程序文件夹中的某个位置?

使用@rpath。 (或@executable_path。)请参阅man 1 dyld

如果路径位于不同计算机上的不同目录中或者根本不存在怎么办?

那么你的应用程序将无法加载。使用弱链接或加载如果 dylib 不是必需的,则可以在运行时使用 dlopen 加载 dylib。

which resides somewhere in my Application folder?

Use @rpath. (or @executable_path.) See man 1 dyld.

What if the path resides in different directories on different computers or is not existent at all?

Then your app will fail to load. Use weak linking or load the dylib at runtime with dlopen if the dylib is not essential.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文