Ruby-FFI:MemoryPointer.read_int 存在于 1.9 中,但不存在于 1.8 中
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论