host_cpu

in gems/aws-crt/lib/aws-crt/platforms.rb [39:49]


def host_cpu
  case RbConfig::CONFIG['host_cpu']
  when /86_64/
    'x86_64'
  when /86/
    'x86'
  else
    RbConfig::CONFIG['host_cpu']
  end
end