From a006aca1be22fcbf3362d067e04434101adb0863 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Thu, 27 Mar 2014 11:39:36 -0700 Subject: [PATCH] external-sourcery-toolchain: deal with more sanity checks Signed-off-by: Christopher Larson --- recipes/meta/external-sourcery-toolchain.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/recipes/meta/external-sourcery-toolchain.bb b/recipes/meta/external-sourcery-toolchain.bb index 734c182..afb6d73 100644 --- a/recipes/meta/external-sourcery-toolchain.bb +++ b/recipes/meta/external-sourcery-toolchain.bb @@ -174,6 +174,10 @@ FILES_${PN}-dbg += "${libdir}/mettools/.debug" # Inhibit warnings about files being stripped, we can't do anything about it. INHIBIT_PACKAGE_DEBUG_SPLIT = "1" +# We support multiple toolchain versions, so an unpackaged file isn't +# necessarily a problem. +ERROR_QA_remove = "installed-vs-shipped" + # This test should be fixed to ignore .a files in .debug dirs INSANE_SKIP_${PN}-dbg = "staticdev" @@ -187,6 +191,9 @@ INSANE_SKIP_libquadmath += "ldflags" INSANE_SKIP_libstdc++ += "ldflags" INSANE_SKIP_gdbserver += "ldflags" +# We don't care about rpaths in third party binaries +INSANE_SKIP_${PN}-utils += "useless-rpaths" + PKGV = "${CSL_VER_LIBC}" PKGV_libgcc = "${CSL_VER_GCC}" PKGV_libgcc-dev = "${CSL_VER_GCC}"