mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
Right now for cross recipes e.g. gcc-cross and binutils-cross we specify --disable-nls .... --enable-nls on configure cmdline the --enable-nls coming from gettext bbclass. So we disable nls for all cross inheriting recipes in gettext bbclass and then we remove the extra --disable-nls in gcc-cross and binutils-cross This patch needs testing. Please help (From OE-Core rev: d66b379f809b9c75981848fcc71ed5de13382bf7) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
inherit cross
|
|
PROVIDES = "virtual/${TARGET_PREFIX}binutils"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
INHIBIT_AUTOTOOLS_DEPS = "1"
|
|
|
|
EXTRA_OECONF = "--with-sysroot=${STAGING_DIR_TARGET} \
|
|
--program-prefix=${TARGET_PREFIX} \
|
|
--disable-install-libbfd \
|
|
--disable-werror \
|
|
--enable-poison-system-directories \
|
|
${@base_contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-gold=default', '', d)} \
|
|
${@base_contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}"
|
|
|
|
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} || :
|
|
}
|