makedumpfile: Change COMPATIBLE_HOST check to exclude unsupported arches

Right now riscv32 and mips architecture support is missing.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2023-11-08 21:42:29 -08:00
parent 66aeb2b75e
commit 31aaf729e6

View File

@ -16,8 +16,9 @@ SRCREV = "3bc3b3e3be33a9aa040e654f055912063e576c1b"
DEPENDS = "bzip2 zlib elfutils xz"
RDEPENDS:${PN}-tools = "perl ${PN}"
# mips would not compile.
COMPATIBLE_HOST = "(x86_64|i.86|powerpc|arm|aarch64).*-linux"
# mips/rv32 would not compile.
COMPATIBLE_HOST:mipsarcho32 = "null"
COMPATIBLE_HOST:riscv32 = "null"
PACKAGES =+ "${PN}-tools"
FILES:${PN}-tools = "${bindir}/*.pl"