summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/binutils/binutils-2.26.inc
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-10-03 15:16:32 +0100
committerSona Sarmadi <sona.sarmadi@enea.com>2017-02-10 12:21:36 +0100
commitcb31822a6c2dd856881330a356e9037e68db45dc (patch)
treefd4102b49bcbcfb39fa7e5d0876712ef8962bbbe /meta/recipes-devtools/binutils/binutils-2.26.inc
parent2477355247b8f2fb69ebe07504b532bcc6b4e8f3 (diff)
downloadpoky-cb31822a6c2dd856881330a356e9037e68db45dc.tar.gz
binutils: apply RPATH fixes from our libtool patches
We don't autoreconf/libtoolize binutils as it has very strict requirements, so extend our patching of the stock libtool to include two fixes to RPATH behaviour, as part of the solution to ensure that native binaries don't have RPATHs pointing at the host system's /usr/lib. This generally doesn't cause a problem but it can cause some binaries (such as ar) to abort on startup: ./x86_64-pokysdk-linux-ar: relocation error: /usr/lib/libc.so.6: symbol _dl_starting_up, version GLIBC_PRIVATE not defined in file ld-linux.so.2 with link time reference The situation here is that ar is built and as it links to the host libc/loader has an RPATH for /usr/lib. If tmp is wiped and then binutils is installed from sstate relocation occurs and the loader changed to the sysroot, but there remains a RPATH for /usr/lib. This means that the sysroot loader is used with the host libc, which can be incompatible. By telling libtool that the host library paths are in the default search path, and ensuring that all default search paths are not added as RPATHs by libtool, the result is a binary that links to what it should be linking to and nothing else. [ YOCTO #9287 ] (From OE-Core rev: 6b201081b622cc083cc2b1a8ad99d6f7d2bea480) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils-2.26.inc')
-rw-r--r--meta/recipes-devtools/binutils/binutils-2.26.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.26.inc b/meta/recipes-devtools/binutils/binutils-2.26.inc
index 283167c718..f93ded5deb 100644
--- a/meta/recipes-devtools/binutils/binutils-2.26.inc
+++ b/meta/recipes-devtools/binutils/binutils-2.26.inc
@@ -37,6 +37,7 @@ SRC_URI = "\
37 file://0015-allow-zero-length-elements.patch \ 37 file://0015-allow-zero-length-elements.patch \
38 file://aarch64-tls.patch \ 38 file://aarch64-tls.patch \
39 file://0015-Refine-.cfi_sections-check-to-only-consider-compact-.patch \ 39 file://0015-Refine-.cfi_sections-check-to-only-consider-compact-.patch \
40 file://0014-libtool-remove-rpath.patch \
40" 41"
41S = "${WORKDIR}/git" 42S = "${WORKDIR}/git"
42 43