summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-12-17 10:13:50 -0800
committerKhem Raj <raj.khem@gmail.com>2019-12-18 15:47:20 -0800
commitdd69fafd7f2c51fb69df66dbeae7f5a4b092580c (patch)
treef592df242a965e0fafef00c4ee20edb4cceb36e1
parentb2058e0507150dba45af0050973364711dba1893 (diff)
downloadmeta-openembedded-dd69fafd7f2c51fb69df66dbeae7f5a4b092580c.tar.gz
libqb: Add --enable-nosection-fallback with mips64/clang
Same issue happens with clang/mips64 so extend the gold fix to cover for this case Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/libqb/libqb_1.0.5.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/libqb/libqb_1.0.5.bb b/meta-oe/recipes-extended/libqb/libqb_1.0.5.bb
index b205186e0b..82503a168b 100644
--- a/meta-oe/recipes-extended/libqb/libqb_1.0.5.bb
+++ b/meta-oe/recipes-extended/libqb/libqb_1.0.5.bb
@@ -22,9 +22,13 @@ S = "${WORKDIR}/git"
22# WORKDIR/libqb/1.0.3+gitAUTOINC+c235284b5f-r0/recipe-sysroot-native/usr/bin/i586-oe-linux/../../libexec/i586-oe-linux/gcc/i586-oe-linux/8.1.0/ld: error: conftest.ld: SECTIONS seen after other input files; try -T/--script 22# WORKDIR/libqb/1.0.3+gitAUTOINC+c235284b5f-r0/recipe-sysroot-native/usr/bin/i586-oe-linux/../../libexec/i586-oe-linux/gcc/i586-oe-linux/8.1.0/ld: error: conftest.ld: SECTIONS seen after other input files; try -T/--script
23# WORKDIR/libqb/1.0.3+gitAUTOINC+c235284b5f-r0/recipe-sysroot-native/usr/bin/i586-oe-linux/../../libexec/i586-oe-linux/gcc/i586-oe-linux/8.1.0/ld: internal error in write_sections, at ../../gold/reloc.cc:791 23# WORKDIR/libqb/1.0.3+gitAUTOINC+c235284b5f-r0/recipe-sysroot-native/usr/bin/i586-oe-linux/../../libexec/i586-oe-linux/gcc/i586-oe-linux/8.1.0/ld: internal error in write_sections, at ../../gold/reloc.cc:791
24# collect2: error: ld returned 1 exit status 24# collect2: error: ld returned 1 exit status
25EXTRA_OECONF_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' --enable-nosection-fallback', '', d)}" 25NOSECTION_FALLBACK = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-nosection-fallback', '', d)}"
26NOSECTION_FALLBACK_toolchain-clang_mips64 = "--enable-nosection-fallback"
27
28EXTRA_OECONF += "${NOSECTION_FALLBACK}"
26 29
27CFLAGS += "-pthread -D_REENTRANT" 30CFLAGS += "-pthread -D_REENTRANT"
31
28do_configure_prepend() { 32do_configure_prepend() {
29 ( cd ${S} 33 ( cd ${S}
30 ${S}/autogen.sh ) 34 ${S}/autogen.sh )