使用 Netbeans (linux/mac) 设置 dylib 的当前/兼容版本

发布于 2024-10-18 08:23:55 字数 55 浏览 2 评论 0原文

根据标题,我该如何设置?此外,我如何自己设置版本?

感谢大家并致以最诚挚的问候。

As per the title, how can I set those? Moreover, how can I set versions themselves?

Thanks to all and best regards.

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

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

发布评论

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

评论(1

_蜘蛛 2024-10-25 08:23:55

我相信您可以向您的项目添加构建选项。您需要添加链接器选项来根据“Mac OS X for Unix Geeks”上的此页面设置兼容和当前版本:库版本。 (他们在示例中使用了一个名为“answer”的库,假定当前版本为 1.2.6)

-dynamiclib -install_name libanswer.1.dylib \
  -compatibility_version 1.2 -current_version 1.2.6 \
  -o libanswer.1.2.6.dylib $(OBJS) 

I believe you can add build options to your project. You'd need to add linker options to set the compatible and current versions according to this page on "Mac OS X for for Unix Geeks": library version. (They use a library called "answer" in their examples, with a supposed current version of 1.2.6)

-dynamiclib -install_name libanswer.1.dylib \
  -compatibility_version 1.2 -current_version 1.2.6 \
  -o libanswer.1.2.6.dylib $(OBJS) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文