From: John Zimmermann Date: Fri, 8 Oct 2021 08:37:00 +0000 (+0200) Subject: arch: detect armv8l as 32bit arm X-Git-Tag: 1.2.0~15 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/commitdiff_plain/80555aba69dd568aa989edea8480487e87d80aac?ds=sidebyside arch: detect armv8l as 32bit arm --- diff --git a/tools/helpers/arch.py b/tools/helpers/arch.py index 3c0bb76..35e8516 100644 --- a/tools/helpers/arch.py +++ b/tools/helpers/arch.py @@ -9,7 +9,8 @@ def host(): "i686": "x86", "x86_64": "x86_64", "aarch64": "arm64", - "armv7l": "arm" + "armv7l": "arm", + "armv8l": "arm" } if machine in mapping: return mapping[machine]