如何在ubuntu中不安装gsoap时使用它?
我在 ubuntu 下使用 c++ 工作。有没有一种方法可以在不安装 gsoap 的情况下使用它?
我确实安装了它。我已经复制了所有 gsoap 依赖项......现在我想删除它并尝试查看它是否正常工作。
你的意见是什么? 谢谢。欣赏
i am working in c++ under ubuntu. is there a way for using gsoap without installing it?
I did install it. i've copied all the gsoap dependencies....and now i would like to delete it and try to see if it's working.
what is your opinion?
THX. Appreciate
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
gSoap 是一个编译时工具,没有任何运行时的东西需要安装。从将 C++ 端包装器编译到库或 exe 的那一刻起,您只需传送包装对目标语言(Python、java,无论您选择的任何语言)的访问的文件。
您可以安全地卸载 gsoap 并进行测试。
gSoap is a compile-time tool, there's no runtime stuff to leave installed. From the moment you compiled the C++ side wrappers into library or exe, you only need to ship the files that wrap access to the target language (Python, java, whatever you chose).
You can safely uninstall gsoap and test.