From 80555aba69dd568aa989edea8480487e87d80aac Mon Sep 17 00:00:00 2001 From: John Zimmermann Date: Fri, 8 Oct 2021 10:37:00 +0200 Subject: [PATCH] arch: detect armv8l as 32bit arm --- tools/helpers/arch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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] -- 2.47.3