From 415287be0cce596ea0d33ded0f3e6ffa9f26b775 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 10 Nov 2015 13:49:15 -0700 Subject: openjade-native: statically link local libs Statically link local libs to avoid gold link issue. This is clearly a workaround, but does get us past the failures with systems using gold by default until we find a better solution. [YOCTO #2972] Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- .../openjade/openjade-native_1.3.2.bb | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb index fa7aa62eb3..355ed6a16e 100644 --- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb +++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb @@ -24,6 +24,10 @@ SRC_URI[sha256sum] = "1d2d7996cc94f9b87d0c51cf0e028070ac177c4123ecbfd7ac1cb8d0b7 inherit autotools-brokensep native +# Statically link local libs to avoid gold link issue [YOCTO #2972] +PACKAGECONFIG ?= "static-only-libs" +PACKAGECONFIG[static-only-libs] = "--enable-static --disable-shared,--enable-static --enable-shared,," + EXTRA_OECONF = "--enable-spincludedir=${STAGING_INCDIR}/OpenSP \ --enable-splibdir=${STAGING_LIBDIR}" @@ -57,14 +61,20 @@ do_compile_prepend () { do_install() { # Refer to http://www.linuxfromscratch.org/blfs/view/stable/pst/openjade.html # for details. - install -d ${D}${bindir} - install -m 0755 ${S}/jade/.libs/openjade ${D}${bindir}/openjade + install -d ${D}${bindir} ${D}${libdir} + if ${@bb.utils.contains('PACKAGECONFIG', 'static-only-libs', 'true', 'false', d)}; then + install -m 0755 jade/openjade ${D}${bindir}/openjade + oe_libinstall -a -C style libostyle ${D}${libdir} + oe_libinstall -a -C spgrove libospgrove ${D}${libdir} + oe_libinstall -a -C grove libogrove ${D}${libdir} + else + install -m 0755 jade/.libs/openjade ${D}${bindir}/openjade + oe_libinstall -a -so -C style libostyle ${D}${libdir} + oe_libinstall -a -so -C spgrove libospgrove ${D}${libdir} + oe_libinstall -a -so -C grove libogrove ${D}${libdir} + fi ln -sf openjade ${D}${bindir}/jade - oe_libinstall -a -so -C style libostyle ${D}${libdir} - oe_libinstall -a -so -C spgrove libospgrove ${D}${libdir} - oe_libinstall -a -so -C grove libogrove ${D}${libdir} - install -d ${D}${datadir}/sgml/openjade-${PV} install -m 644 dsssl/catalog ${D}${datadir}/sgml/openjade-${PV} install -m 644 dsssl/*.dtd ${D}${datadir}/sgml/openjade-${PV} -- cgit 1.2.3-korg