diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-03-27 21:44:47 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-28 19:40:59 -0700 |
commit | 816fafc0b88c9e7ee9e71eca6dae370cf393dd65 (patch) | |
tree | a4148f8e66eb9c55efd4608fd4d3603419d4ae7a /meta-gnome/recipes-gimp | |
parent | 0af2cc3e75b959592e5c3bce3b6f147ba16066ea (diff) | |
download | meta-openembedded-816fafc0b88c9e7ee9e71eca6dae370cf393dd65.tar.gz |
gimp: Add libexecinfo to linker flags
LLD reports backtrace() as undefined during linking on musl systems
musl systems use libexecinfo to provide this API, the dependency
is not enough, it needs to reflect in linker flags too, since the
assumption is that backtrace() API in in libc ( glibc has it this way)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Markus Volk <f_l_k@t-online.de>
Diffstat (limited to 'meta-gnome/recipes-gimp')
-rw-r--r-- | meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
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 2018ea04c4..f56c12c89b 100644 --- a/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb +++ b/meta-gnome/recipes-gimp/gimp/gimp_3.0.2.bb | |||
@@ -44,6 +44,8 @@ DEPENDS = " \ | |||
44 | 44 | ||
45 | DEPENDS:append:libc-musl = " libexecinfo" | 45 | DEPENDS:append:libc-musl = " libexecinfo" |
46 | 46 | ||
47 | LDFLAGS:append:libc-musl = " -lexecinfo" | ||
48 | |||
47 | inherit meson gtk-icon-cache mime-xdg pkgconfig gettext gobject-introspection vala | 49 | inherit meson gtk-icon-cache mime-xdg pkgconfig gettext gobject-introspection vala |
48 | 50 | ||
49 | GIR_MESON_OPTION = 'can-crosscompile-gir' | 51 | GIR_MESON_OPTION = 'can-crosscompile-gir' |