# File ext/libv8/arch.rb, line 32 def arm? RbConfig::MAKEFILE_CONFIG['build_cpu'] =~ /^arm/ end
# File ext/libv8/arch.rb, line 36 def libv8_arch if arm? then "arm" elsif x64? then "x64" else "ia32" end end
# File ext/libv8/arch.rb, line 19 def rubinius? Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == "rbx" end
TODO fix false positive on 64-bit ARM
# File ext/libv8/arch.rb, line 24 def x64? if rubinius? x86_64_from_build_cpu || x86_64_from_arch_flag else x86_64_from_byte_length end end
# File ext/libv8/arch.rb, line 15 def x86_64_from_arch_flag RbConfig::MAKEFILE_CONFIG['ARCH_FLAG'] =~ /x86_64/ end
Generated with the Darkfish Rdoc Generator 2.