mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
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.
(From OE-Core rev: 20816eb5398512652c971a37589a2ca28ffd3d68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
inherit cross
|
|
PROVIDES = "virtual/${TARGET_PREFIX}binutils"
|
|
|
|
PN = "binutils-cross-${TARGET_ARCH}"
|
|
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
|
|
|
|
# We don't really need these, so we'll remove them...
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${libdir_native}/libiberty.a
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/lib/ldscripts
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/share/info
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/share/locale
|
|
rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/share/man
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/share || :
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/${libdir}/gcc-lib || :
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/${libdir}64/gcc-lib || :
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/${libdir} || :
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/${libdir}64 || :
|
|
rmdir ${D}${STAGING_DIR_NATIVE}${prefix_native}/${prefix} || :
|
|
}
|