v.pref: do not panic in get_host_arch, assume Arch.amd64 as a default
parent
6e41561124
commit
9e270bacf7
|
@ -763,7 +763,8 @@ pub fn get_host_arch() Arch {
|
||||||
// need a comptime `$if native {` too, and/or a mechanism to always
|
// need a comptime `$if native {` too, and/or a mechanism to always
|
||||||
// generate all branches for specific functions?
|
// generate all branches for specific functions?
|
||||||
if C.__V_architecture <= int(Arch._auto) || C.__V_architecture >= int(Arch._max) {
|
if C.__V_architecture <= int(Arch._auto) || C.__V_architecture >= int(Arch._max) {
|
||||||
panic('unknown host CPU architecture')
|
eprintln('unknown host CPU architecture')
|
||||||
|
return Arch.amd64
|
||||||
}
|
}
|
||||||
return Arch(C.__V_architecture)
|
return Arch(C.__V_architecture)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue