编译 OpenSSH 以在 iPhone 应用程序中使用
我正在尝试创建一个应用程序来利用 OpenSSH 为 iphone 创建 sFtp 客户端。我知道可以为 iPhone 创建 ssh 客户端(iSSH、TouchTerm 等),并且我还假设它们使用 openssh 作为基础。
我只需要创建一个静态库吗?
I am trying to create an application to take advantage of OpenSSH to create an sFtp client for the iphone. I know that it is possible to create ssh clients for iPhone (iSSH, TouchTerm, etc) and I also assume they are using openssh as a base.
Would I just need to create a static library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这个问题已经已经被问过。简短的回答:您可以将源文件放入您的项目中并使用应用程序编译它们,或者您可以链接到静态库(如果他们的许可证可以 - 例如,LGPL 就不行,但我认为它使用 OpenSSH 应该没问题)。希望有帮助。
I think this question has already been asked. Short answer: you can drop the source files into your project and compile them with the application, or you could probably link to a static library (if it's OK with their license--it's not OK with LGPL, for instance, but I think it should be OK with OpenSSH). Hope that helps.