X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/blobdiff_plain/e589328e4992ab83a538986af59fe7fd00a55c79..2a2097f4ff99287c84bee69f5116cffdc90e73b1:/tools/helpers/arch.py diff --git a/tools/helpers/arch.py b/tools/helpers/arch.py index af18e66..735d344 100644 --- a/tools/helpers/arch.py +++ b/tools/helpers/arch.py @@ -24,5 +24,7 @@ def maybe_remap(target): 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" return target