From patchwork Tue May 17 12:28:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 8117 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id EA5A8C433F5 for ; Tue, 17 May 2022 12:28:32 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web08.6515.1652790503421637998 for ; Tue, 17 May 2022 05:28:23 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 19C201042; Tue, 17 May 2022 05:28:23 -0700 (PDT) Received: from oss-tx204.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9DA063F66F; Tue, 17 May 2022 05:28:22 -0700 (PDT) From: Ross Burton To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 3/3] CI: use external-arm-toolchain 10.3 Date: Tue, 17 May 2022 13:28:18 +0100 Message-Id: <20220517122818.3324458-3-ross.burton@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220517122818.3324458-1-ross.burton@arm.com> References: <20220517122818.3324458-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 17 May 2022 12:28:32 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/3416 The 11.2 release of the Arm GCC uses Broadwell-onwards instructions, but our CI (and many other users) have pre-Broadwell hardware. Until 11.3 is released which fixes this, go back to using 10.3 for our CI. Signed-off-by: Ross Burton --- ci/external-gccarm.yml | 1 + ci/get-binary-toolchains | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/external-gccarm.yml b/ci/external-gccarm.yml index 2af8b5e8..84c2cfa2 100644 --- a/ci/external-gccarm.yml +++ b/ci/external-gccarm.yml @@ -5,4 +5,5 @@ local_conf_header: cc: | SKIP_RECIPE[gcc-cross-arm] = "Using external toolchain" TCMODE = "external-arm" + PREFERRED_VERSION_external-arm-toolchain = "10.3-2021.07" EXTERNAL_TOOLCHAIN = "${TOPDIR}/toolchains/${TARGET_ARCH}" diff --git a/ci/get-binary-toolchains b/ci/get-binary-toolchains index bfdd8c57..cd4c25ef 100755 --- a/ci/get-binary-toolchains +++ b/ci/get-binary-toolchains @@ -2,7 +2,7 @@ set -u HOST_ARCH=$(uname -m) -VER="11.2-2022.02" +VER="10.3-2021.07" DOWNLOAD_DIR=$1 TOOLCHAIN_DIR=$2