跨平台 Ruby FFI 库
我正在为 google 的 cityhash 库(c++)编写 FFI ruby 包装器。那么,使其跨平台(linux、windows、macos)的最佳方法是什么?在gem安装过程中是否需要将google的库编译到共享库?或者只编译一次并与 gem 一起发布?
I'm writing FFI ruby wrapper for the google's cityhash library(c++). So, what the best way to make it cross-platform (linux, windows, macos)? Do I need compile google's library to the shared library during the gem installation? Or just compile it once and ship with gem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好只是检查这个库是否已安装。
当作外部独立资源!
这样,您的用户将能够安装库的更新,而无需放弃您的绑定!您确实希望您的用户能够安装此库的安全更新,对吧? ;)
Best would be just checking if this library is installed at all.
Treat is as external separate resource!
This way, your users will be able to install updates to the library without giving up your bindings! You do want your users been able to install security updates to this library, right? ;)