diff mbox series

[2/2] CI: workaround 32bit timer warning in binary toolchain

Message ID 20230721032031.3584730-2-jon.mason@arm.com
State New
Headers show
Series [1/2] CI: add defaults for get-binary-toolchains | expand

Commit Message

Jon Mason July 21, 2023, 3:20 a.m. UTC
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 <jon.mason@arm.com>
---
 ci/external-gccarm.yml | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

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"