From cfcc8a4d13c26793ecab2d8da9274eb98b8cb4ce Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Thu, 20 Jul 2023 22:20:31 -0500 Subject: [PATCH] CI: workaround 32bit timer warning in binary toolchain Temporary workaround for a number binaries in the toolchains that are using 32bit timer API. This must be done in the CI yml file instead of the recipe because of all the libraries in the toolchain have the issue. Signed-off-by: Jon Mason --- ci/external-gccarm.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/external-gccarm.yml b/ci/external-gccarm.yml index fe8fa6ca..a3313d89 100644 --- a/ci/external-gccarm.yml +++ b/ci/external-gccarm.yml @@ -6,3 +6,6 @@ local_conf_header: SKIP_RECIPE[gcc-cross-arm] = "Using external toolchain" TCMODE = "external-arm" EXTERNAL_TOOLCHAIN = "${TOPDIR}/toolchains/${TARGET_ARCH}" + # Temporary workaround for a number binaries in the toolchains that are using 32bit timer API + # This must be done here instead of the recipe because of all the libraries in the toolchain have the issue + INSANE_SKIP:append = " 32bit-time"