diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-12-17 12:34:59 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-12-19 09:41:29 -0800 |
commit | 8cbbded9ed31dbfc88e74153b496b94f86279064 (patch) | |
tree | 2c95e23bd546087ebb9b3af87906fb5665cd8dd6 | |
parent | fc532e0db1ec64a1691e228913947431f260df3a (diff) | |
download | meta-openembedded-8cbbded9ed31dbfc88e74153b496b94f86279064.tar.gz |
lua-lgi: Disable on architecture without luajit port
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb b/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb index 1584a931c7..8b436668dc 100644 --- a/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb +++ b/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb | |||
@@ -22,3 +22,9 @@ inherit meson pkgconfig | |||
22 | EXTRA_OEMESON += "--buildtype release -Dtests=false" | 22 | EXTRA_OEMESON += "--buildtype release -Dtests=false" |
23 | 23 | ||
24 | FILES:${PN} = "${libdir} ${datadir}" | 24 | FILES:${PN} = "${libdir} ${datadir}" |
25 | |||
26 | # ppc64/riscv64/riscv32 is not supported on luajit | ||
27 | COMPATIBLE_HOST:riscv32 = "null" | ||
28 | COMPATIBLE_HOST:riscv64 = "null" | ||
29 | COMPATIBLE_HOST:powerpc64 = "null" | ||
30 | COMPATIBLE_HOST:powerpc64le = "null" | ||