From 9cbb7c51118a169e03f18b0171cab73ec5755b13 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Wed, 4 Nov 2015 09:24:11 -0700 Subject: [PATCH] libgcc-external: move libgcov.a to ${PN}-dev This aligns with the non-external recipe, and as ${PN}-dev already disables the staticdev QA check, this also silences the libgcov-dev QA warning. We could also have changed libgcov-dev to ${MLPREFIX}libgcov-dev. JIRA: SB-6225 Signed-off-by: Christopher Larson --- recipes-external/gcc/libgcc-external.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes-external/gcc/libgcc-external.bb b/recipes-external/gcc/libgcc-external.bb index c1ddc23..7bb7020 100644 --- a/recipes-external/gcc/libgcc-external.bb +++ b/recipes-external/gcc/libgcc-external.bb @@ -8,7 +8,6 @@ PV = "${GCC_VERSION}" inherit external-toolchain LICENSE = "GPL-3.0-with-GCC-exception" -PACKAGES =+ "libgcov-dev" # libgcc needs libc, but glibc's utilities need libgcc, so short-circuit the # interdependency here by manually specifying it rather than depending on the @@ -31,8 +30,7 @@ FILES_${PN}-dev = "${base_libdir}/libgcc_s.so \ ${libdir}/gcc/${TARGET_SYS}/${GCC_VERSION}/libgcc.a \ ${libdir}/gcc/${TARGET_SYS}/${GCC_VERSION}/libgcc_eh.a \ ${libdir}/gcc/${TARGET_SYS}/${GCC_VERSION}/include/unwind.h \ + ${libdir}/gcc/${TARGET_SYS}/${GCC_VERSION}/libgcov.a \ " INSANE_SKIP_${PN}-dev += "staticdev" FILES_${PN}-dbg += "${base_libdir}/.debug/libgcc_s.so.*.debug" -FILES_libgcov-dev = "${libdir}/gcc/${TARGET_SYS}/${GCC_VERSION}/libgcov.a" -INSANE_SKIP_libgcov-dev += "staticdev"