Glib 在 iPhone 应用程序中的使用
我想基于现有的开源 Objective-C 框架开发一个 iPhone 应用程序,但是该框架广泛使用了 glib 库,我找不到一种方法来构建和包含 iPhone 应用程序的 glib 库(非越狱) )。
有什么办法可以做到这一点,或者有没有推荐的方法将框架从 glib 移植出去?
谢谢
I would like to develop an iPhone App based on an existing open-source Objective-C framework, however that framework makes extensive use of the glib library and I cannot find a way to build and include the glib library for an iPhone app (non jailbreak).
Is there any way this can be done, or is there any recommended approach to porting a framework away from glib?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,伙计们,在 iPhone 上使用 LGPL 项目(您确实需要静态链接)是合法的,只要您提供应用程序的目标代码,以便用户(如果精通技术)可以将您的应用程序与新版本的 LGPL 重新链接库。当然,如果您更改任何代码,您仍然需要重新发布该库。
no, guys, using LGPL projects on iPhone (where you indeed need to statically link) is legal as long as you provide your app's object code so the user can (if technically versed) re-link your app with a new version of the LGPL lib. Of course, you still need to re-publish the lib if you change any of that code.
我建议不要移植,因为 glib 是 GPL 许可的,这意味着您必须开源所有应用程序代码。或者也许这不是问题?
I would recommend porting away from because glib is GPL licensed, which means that you will have to open source all your application code. Or maybe that is not an issue?