Sha256: e31d7c60f3863f71ed8175fa917494b9f058dcdd4413858f38a94657b1f808ae
Contents?: true
Size: 641 Bytes
Versions: 27
Compression:
Stored size: 641 Bytes
Contents
require 'rbconfig' module Libv8 module Arch module_function def x86_64_from_build_cpu RbConfig::MAKEFILE_CONFIG['build_cpu'] == 'x86_64' end def x86_64_from_byte_length ['foo'].pack('p').size == 8 end def x86_64_from_arch_flag RbConfig::MAKEFILE_CONFIG['ARCH_FLAG'] =~ /x86_64/ end def rubinius? Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == "rbx" end def x64? if rubinius? x86_64_from_build_cpu || x86_64_from_arch_flag else x86_64_from_byte_length end end def libv8_arch x64? ? "x64" : "ia32" end end end
Version data entries
27 entries across 27 versions & 3 rubygems