mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 18:32:12 +02:00
When a user takes coverage in gcc of SDK, it becomes the link error in SDK because there is not libgcov. ---- ld: cannot find -lgcov collect2: error: ld returned 1 exit status ---- (From OE-Core rev: 99b26dba6e4f5a64579f183883265498000e3104) Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
261 B
BlitzBasic
16 lines
261 B
BlitzBasic
SUMMARY = "Target packages for the standalone SDK"
|
|
PR = "r8"
|
|
LICENSE = "MIT"
|
|
|
|
inherit packagegroup
|
|
|
|
RDEPENDS_${PN} = "\
|
|
libgcc \
|
|
libgcc-dev \
|
|
libgcov-dev \
|
|
libstdc++ \
|
|
libstdc++-dev \
|
|
${LIBC_DEPENDENCIES} \
|
|
qemuwrapper-cross \
|
|
"
|