Sha256: 69a9019189f7986bb6576a602efc3b1a5bee1130fb1d5343d087ae14803548aa
Contents?: true
Size: 470 Bytes
Versions: 48
Compression:
Stored size: 470 Bytes
Contents
require 'rubygems' module Libv8 module Arch module_function def libv8_arch case Gem::Platform.local.cpu when /^arm$/ then 'arm' when /^a(rm|arch)64$/ then 'arm64' when /^x86$/ then 'ia32' when /^(x86_64|amd64)$/ then 'x64' when /^universal$/ then 'x64' # OS X else warn "Unsupported target: #{Gem::Platform.local.cpu}" Gem::Platform.local.cpu end end end end
Version data entries
48 entries across 48 versions & 1 rubygems