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.
This commit is contained in:
Oliver Smith 2020-06-22 16:56:24 +02:00 committed by Bart Ribbers
parent 95762a229a
commit f9c74277ca
No known key found for this signature in database
GPG Key ID: 699D16185DAFAE61
1 changed files with 1 additions and 0 deletions

View File

@ -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: