From f9c74277ca23675bf9c29b14f04d7267e000bec8 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 22 Jun 2020 16:56:24 +0200 Subject: [PATCH] cpu_emulation_required: not for armv7 -> armhf (MR 1952) Make it possible to build armhf packages on armv7 devices, e.g. to help with stuck build-edge-armhf packages that won't build with qemu. --- pmb/parse/arch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pmb/parse/arch.py b/pmb/parse/arch.py index fea7308f..6ca18043 100644 --- a/pmb/parse/arch.py +++ b/pmb/parse/arch.py @@ -105,6 +105,7 @@ def cpu_emulation_required(args, arch): # Other cases: host arch on the left, target archs on the right not_required = { "x86_64": ["x86"], + "armv7": ["armel", "armhf"], "aarch64": ["armel", "armhf", "armv7"], } if args.arch_native in not_required: