mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
We've had a lot of users running into RSS issues where -initial recipes were being installed into sysroots alongside their counterparts and causing overlapping files issues. In general this was through do_build dependencies. Such dependencies are bad in general and I'd encourage people to compare the taskgraphs with using a more specific dependency like do_populate_sysroot, do_image_complete or do_deploy as often the more specific dependency will result in a much cleaner build. Regardless, we don't want -initial dependencies getting in the way like this and there are cases a do_build dependency could make sense. Deleting the do_build task in these cases makes sense since this is not a build "endpoint" we'd ever want a user to use, its a behind the scenes piece of bootstrappping. Unfortunately to make this work, we need a newer bitbake version which has a bitbake bug fixed. (From OE-Core rev: 04c053d42ab05f77b2d1ca93a0fabae44073d57e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
480 B
PHP
21 lines
480 B
PHP
require libgcc-common.inc
|
|
|
|
DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial"
|
|
|
|
LICENSE = "GPL-3.0-with-GCC-exception"
|
|
|
|
STAGINGCC = "gcc-cross-initial-${TARGET_ARCH}"
|
|
STAGINGCC_class-nativesdk = "gcc-crosssdk-initial-${SDK_SYS}"
|
|
PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:"
|
|
|
|
PACKAGES = ""
|
|
|
|
EXTRA_OECONF += "--disable-shared"
|
|
|
|
COMPILERINITIAL = "-initial"
|
|
|
|
inherit nopackages
|
|
|
|
# We really only want this built by things that need it, not any recrdeptask
|
|
deltask do_build
|