diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-30 23:18:09 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 23:47:27 +0000 |
commit | 20816eb5398512652c971a37589a2ca28ffd3d68 (patch) | |
tree | 8037444a0075bef4ae253caf991c971e37916bc3 /meta/recipes-devtools/binutils/binutils-cross.inc | |
parent | 11d801f6a7319a95f824842df118c446f8da7a71 (diff) | |
download | openembedded-core-20816eb5398512652c971a37589a2ca28ffd3d68.tar.gz openembedded-core-20816eb5398512652c971a37589a2ca28ffd3d68.tar.bz2 openembedded-core-20816eb5398512652c971a37589a2ca28ffd3d68.zip |
binutils-cross: Remove exec_prefix from the linker search path
We don't put target libs into a native/cross ${exec_prefix} but having
this in the default search path means all linker scripts have to be relocated.
This is a considerable chunk of files to create multiple copies of for no good
reason.
Instead, patch out the paths we don't need.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils-cross.inc')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils-cross.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-cross.inc b/meta/recipes-devtools/binutils/binutils-cross.inc index fd3d801491..7ebd7e3093 100644 --- a/meta/recipes-devtools/binutils/binutils-cross.inc +++ b/meta/recipes-devtools/binutils/binutils-cross.inc @@ -7,9 +7,14 @@ BPN = "binutils" INHIBIT_DEFAULT_DEPS = "1" INHIBIT_AUTOTOOLS_DEPS = "1" +SRC_URI += "file://no-tooldirpaths.patch" + +# Specify lib-path else we use a load of search dirs which we don't use +# and mean the linker scripts have to be relocated. EXTRA_OECONF += "--with-sysroot=${STAGING_DIR_TARGET} \ --disable-install-libbfd \ --enable-poison-system-directories \ + --with-lib-path==${target_base_libdir}:=${target_libdir} \ " do_install () { oe_runmake 'DESTDIR=${D}' install |