mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
969 B
BlitzBasic
25 lines
969 B
BlitzBasic
SUMMARY = "Host SDK package for cross canadian toolchain"
|
|
PN = "packagegroup-cross-canadian-${MACHINE}"
|
|
|
|
inherit cross-canadian packagegroup
|
|
|
|
PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1"
|
|
|
|
# Use indirection to stop these being expanded prematurely
|
|
BINUTILS = "binutils-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
|
GCC = "gcc-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
|
GDB = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
${@all_multilib_tune_values(d, 'BINUTILS')} \
|
|
${@all_multilib_tune_values(d, 'GCC')} \
|
|
${@all_multilib_tune_values(d, 'GDB')} \
|
|
meta-environment-${MACHINE} \
|
|
"
|
|
|
|
# When TUNE_ARCH changes but MACHINE does not (for example when a machine definition is updated),
|
|
# cross-canadian.bbclass prevents variable dependency propagation to TRANSLATED_TARGET_ARCH
|
|
# This will result in erroneous reuse of previous sstate packages. The following line
|
|
# establishes a direct dependency instead.
|
|
do_package[vardeps] += "TUNE_ARCH"
|