方法介绍
方法名称:获取当前cpu架构,返回1表示arm架构0是x86架构
方法例子
local type = getCpuArch()
if type == 0 then
print("当前cpu架构是x86架构")
else
print("当前cpu架构是arm架构")
end