From: Richard Purdie Date: Mon, 22 Jul 2024 14:27:50 +0000 (+0100) Subject: time64.inc: Add warnings exclusion for known toolchain problems for now X-Git-Tag: yocto-5.1~540 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d05fa366ebbf8017f5f5fae0b1bc8502ada3ab79;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git time64.inc: Add warnings exclusion for known toolchain problems for now Fixing our infrastructure to show warnings for nativesdk packages resulted in some issues with 32 bit toolchains and 32 bit time becoming clear. For now, add INSANE_SKIP entries for these which effectively documents the issue and allows us to at least start running the tests in the infrastructure. Over time we will need to try and fix these if upstream doesn't. Signed-off-by: Richard Purdie --- diff --git a/meta/conf/distro/include/time64.inc b/meta/conf/distro/include/time64.inc index 6ee7b491526..510da110394 100644 --- a/meta/conf/distro/include/time64.inc +++ b/meta/conf/distro/include/time64.inc @@ -42,3 +42,11 @@ INSANE_SKIP:append:pn-strace = " 32bit-time" # has the same INSANE_SKIP setting. # Please check the comment in meta/classes-recipe/cargo_common.bbclass # for information about why, and the overall Y2038 situation in rust. + +# binutils/gcc/gdb still need fixing for qemuarm/qemuarmv5/qemumips/qemuppc/qemux86 +#binutils-cross-canadian-arm-2.42-r0 do_package_qa: QA Issue: xxx/x86_64-oesdk-linux/usr/bin/arm-oe-linux-gnueabi/arm-oe-linux-gnueabi-ranlib uses 32-bit api 'lstat' +INSANE_SKIP:append:pn-binutils-cross-canadian-${TRANSLATED_TARGET_ARCH} = " 32bit-time" +#gcc-cross-canadian-arm-14.1.0-r0 do_package_qa: QA Issue: xxx/x86_64-oesdk-linux/usr/libexec/arm-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/14.1.0/plugin/gengtype uses 32-bit api 'ctime' +INSANE_SKIP:append:pn-gcc-cross-canadian-${TRANSLATED_TARGET_ARCH} = " 32bit-time" +#gdb-cross-canadian-arm-15.1-r0 do_package_qa: QA Issue: xxx/x86_64-oesdk-linux/usr/bin/arm-oe-linux-gnueabi/arm-oe-linux-gnueabi-gdb uses 32-bit api 'lstat' +INSANE_SKIP:append:pn-gdb-cross-canadian-${TRANSLATED_TARGET_ARCH} = " 32bit-time"