1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.pref: remove 'unknown host CPU architecture' label to fix msvc CI

This commit is contained in:
Delyan Angelov 2021-06-13 03:05:00 +03:00
parent ed07f00729
commit 4a59316600
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -763,7 +763,6 @@ pub fn get_host_arch() Arch {
// need a comptime `$if native {` too, and/or a mechanism to always
// generate all branches for specific functions?
if C.__V_architecture <= int(Arch._auto) || C.__V_architecture >= int(Arch._max) {
eprintln('unknown host CPU architecture')
return Arch.amd64
}
return Arch(C.__V_architecture)