Ruby-FFI:MemoryPointer.read_int 存在于 1.9 中,但不存在于 1.8 中

发布于 2024-12-29 11:36:57 字数 444 浏览 0 评论 0原文

我正在使用 Ruby-FFI 为库编写一个包装器,并试图让它在 Ruby 1.8 和 1.9 上工作。

当我在 1.9 上运行它时,MemoryPointer 有一个方法 read_uint,但当我在 1.8 上运行它时却没有。看哪:

require 'ffi'

1.9

FFI::MemoryPointer.new(:uint).methods.sort #=> has :read_uint

1.8

FFI::MemoryPointer.new(:uint).methods.sort #=> no :read_uint

这不是和 gems 安装的包一模一样吗?但是好吧,这需要一些编译。即便如此,它还是在同一个盒子上。请帮助我理解。

I am writing a wrapper for a library with Ruby-FFI and trying to get it to work on Ruby 1.8 and 1.9

When I run it on 1.9, MemoryPointer has a method read_uint, but not when I run it on 1.8. Behold:

require 'ffi'

1.9

FFI::MemoryPointer.new(:uint).methods.sort #=> has :read_uint

1.8

FFI::MemoryPointer.new(:uint).methods.sort #=> no :read_uint

Is it not exactly the same package that gets installed with gems? But OK, this one requires some compilation. Even so, it's on the same box. Please help me understand.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文