From c26b1dcc4ad3497296b8dcd913bcc2f18e7eceb9 Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Mon, 22 Jan 2024 20:31:09 +0100 Subject: [PATCH] luajit: allow to build on supported platforms According to documentation mips,mips64 and powerpc are supported platforms. Adjust accordingly This was tested to work for mips64, where luajit compiled without issue. Signed-off-by: Markus Volk Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/luajit/luajit_git.bb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta-oe/recipes-devtools/luajit/luajit_git.bb b/meta-oe/recipes-devtools/luajit/luajit_git.bb index cadc9843d9..240271d410 100644 --- a/meta-oe/recipes-devtools/luajit/luajit_git.bb +++ b/meta-oe/recipes-devtools/luajit/luajit_git.bb @@ -91,10 +91,7 @@ FILES:${PN}-dev += "${libdir}/libluajit-5.1.a \ " FILES:luajit-common = "${datadir}/${BPN}-${PV}" -# mips64/ppc/ppc64/riscv64/riscv32 is not supported in this release -COMPATIBLE_HOST:mipsarchn32 = "null" -COMPATIBLE_HOST:mipsarchn64 = "null" -COMPATIBLE_HOST:powerpc = "null" +# ppc64/riscv64/riscv32 is not supported in this release COMPATIBLE_HOST:powerpc64 = "null" COMPATIBLE_HOST:powerpc64le = "null" COMPATIBLE_HOST:riscv64 = "null"