You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running py-cpuinfo 8.0.0 on armv7 FreeBSD, the program fails to detect the architecture. This is because uname -m says arm instead of armv7 on armv7 FreeBSD. Please fix the architecture detection code to also check for just arm in the ARM_7 case.
The text was updated successfully, but these errors were encountered:
freebsd-git
pushed a commit
to freebsd/freebsd-ports
that referenced
this issue
May 25, 2023
On FreeBSD, armv[67] both report "arm" in "uname -m", but this package
expected the string armv6 or armv7. Fix the port by adding an extra
case for just "arm" to the architecture detection logic.
While we are at it, optionally depend on sysutils/lscpu as an
additional data source for architecture features.
See also: workhorsy/py-cpuinfo#197
Approved by: yuri (maintainer)
Differential Revision: https://reviews.freebsd.org/D40252
Running py-cpuinfo 8.0.0 on armv7 FreeBSD, the program fails to detect the architecture. This is because
uname -m
saysarm
instead ofarmv7
on armv7 FreeBSD. Please fix the architecture detection code to also check for justarm
in theARM_7
case.The text was updated successfully, but these errors were encountered: