summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
f12914e)
Typically armv8l should catch these, but it seems some Android
downstream kernels at least cheat and don't report the correct thing.
if "sse4_2" not in f.read():
logging.info("x86_64 CPU does not support SSE4.2, falling back to x86...")
return "x86"
if "sse4_2" not in f.read():
logging.info("x86_64 CPU does not support SSE4.2, falling back to x86...")
return "x86"
+ elif target == "arm64" and platform.architecture()[0] == "32bit":
+ return "arm"