diff mbox series

[meta-oe] gimp: disable lua for arm

Message ID 20250401065622.1503632-1-f_l_k@t-online.de
State New
Headers show
Series [meta-oe] gimp: disable lua for arm | expand

Commit Message

Markus Volk April 1, 2025, 6:56 a.m. UTC
luajit currently fails for arm:
e -c -o lj_vmmath_dyn.o lj_vmmath.c
| In file included from /usr/include/sys/cdefs.h:731,
|                  from /usr/include/features.h:524,
|                  from /usr/include/sys/types.h:25,
|                  from host/buildvm.h:9,
|                  from host/buildvm_asm.c:6:
| /usr/include/bits/long-double.h:23:10: fatal error: bits/long-double-32.h: No such file or directory
|    23 | #include <bits/long-double-32.h>
|	|          ^~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.
| In file included from /usr/include/sys/cdefs.h:731,
|                  from /usr/include/features.h:524,
|                  from /usr/include/sys/types.h:25,
|                  from host/buildvm.h:9,
|                  from host/buildvm_lib.c:6:
| /usr/include/bits/long-double.h:23:10: fatal error: bits/long-double-32.h: No such file or directory
|    23 | #include <bits/long-double-32.h>
|	|          ^~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.
| In file included from /usr/include/sys/cdefs.h:731,
|                  from /usr/include/features.h:524,
|                  from /usr/include/bits/libc-header-start.h:33,
|                  from /usr/include/limits.h:26,
|                  from /usr/lib/gcc/x86_64-poky-linux/14.2.0/include/limits.h:210,
|                  from /usr/lib/gcc/x86_64-poky-linux/14.2.0/include/syslimits.h:7,
|                  from /usr/lib/gcc/x86_64-poky-linux/14.2.0/include/limits.h:34,
|                  from host/minilua.c:33:
| /usr/include/bits/long-double.h:23:10: fatal error: bits/long-double-32.h: No such file or directory
|    23 | #include <bits/long-double-32.h>
|	|          ^~~~~~~~~~~~~~~~~~~~~~~
| compilation terminated.

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb b/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb
index f56c12c89b..b110e3ae02 100644
--- a/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb
+++ b/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb
@@ -100,6 +100,7 @@  PACKAGECONFIG ?= " \
     ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 xcursor', '', d)} \
 "
 
+PACKAGECONFIG:remove:arm = "lua"
 PACKAGECONFIG:remove:riscv32 = "lua"
 PACKAGECONFIG:remove:riscv64 = "lua"
 PACKAGECONFIG:remove:powerpc64 = "lua"