From patchwork Thu Aug 3 18:33:43 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 28380 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 641D6C04E69 for ; Thu, 3 Aug 2023 18:34:02 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.1927.1691087634594848963 for ; Thu, 03 Aug 2023 11:33:54 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); 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 3C560113E; Thu, 3 Aug 2023 11:34:37 -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 ESMTPA id B37CC3F6C4; Thu, 3 Aug 2023 11:33:48 -0700 (PDT) From: ross.burton@arm.com To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 1/5] arm-toolchain/androidclang: remove Date: Thu, 3 Aug 2023 19:33:43 +0100 Message-Id: <20230803183347.3414946-1-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 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 ; Thu, 03 Aug 2023 18:34:02 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4934 From: Ross Burton This was added to build an Android Common Kernel with the Android compiler, but we don't need to build that anymore. Signed-off-by: Ross Burton --- ci/toolchains.yml | 1 - .../androidclang_r416183b.bb | 52 ------------------- 2 files changed, 53 deletions(-) delete mode 100644 meta-arm-toolchain/recipes-devtools/external-arm-toolchain/androidclang_r416183b.bb diff --git a/ci/toolchains.yml b/ci/toolchains.yml index 72ce5582..056269b2 100644 --- a/ci/toolchains.yml +++ b/ci/toolchains.yml @@ -16,4 +16,3 @@ target: - nativesdk-gcc-aarch64-none-elf - gcc-arm-none-eabi - nativesdk-gcc-arm-none-eabi - - nativesdk-androidclang diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/androidclang_r416183b.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/androidclang_r416183b.bb deleted file mode 100644 index 963fd60e..00000000 --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/androidclang_r416183b.bb +++ /dev/null @@ -1,52 +0,0 @@ -# SPDX-License-Identifier: MIT -# -# Copyright (c) 2021 Arm Limited -# - -SUMMARY = "Android Clang compiler" -DESCRIPTION = "Android Clang compiler, version r416183b. This is based on Clang 12.0.5 \ -Intended usage is to build kernel images that match the output of the Android (hermetic) \ -build system" - -LICENSE = "MIT" - -LIC_FILES_CHKSUM = "file://MODULE_LICENSE_MIT;md5=d41d8cd98f00b204e9800998ecf8427e" - -ANDROID_CLANG_VERSION = "clang-r416183b" -ANDROID_CLANG_HASH = "bd96dfe349c962681f0e5388af874c771ef96670" - -COMPATIBLE_HOST = "x86_64.*-linux" - -SRC_URI = "https://android.googlesource.com/platform/prebuilts/clang/host/linux-x86/+archive/${ANDROID_CLANG_HASH}/${ANDROID_CLANG_VERSION}.tar.gz;subdir=${ANDROID_CLANG_VERSION}" - -# We need to set the checksum to "ignore" because the tarball is dynamically generated and has a new checksum every time -# (the contents are the same, but the time stamp differs) -BB_STRICT_CHECKSUM = "ignore" - -S = "${WORKDIR}/${ANDROID_CLANG_VERSION}" - -FILES:${PN} = "${libexecdir} ${bindir}" - -do_install() { - install -d ${D}${libexecdir}/${ANDROID_CLANG_VERSION}/ - - cp --no-preserve=ownership -r ${S}/. ${D}${libexecdir}/${ANDROID_CLANG_VERSION}/ - # Strip bad RPATHs in the embedded python3 - chrpath -d ${D}${libexecdir}/${ANDROID_CLANG_VERSION}/python3/lib/python*/lib-dynload/*.so - - install -d ${D}${bindir} - # Symlink all executables into bindir - for f in ${D}${libexecdir}/${ANDROID_CLANG_VERSION}/bin/*; do - ln -rs $f ${D}${bindir}/$(basename $f) - done -} - -INHIBIT_DEFAULT_DEPS = "1" - -INSANE_SKIP:${PN} = "already-stripped libdir staticdev file-rdeps arch dev-so" - -INHIBIT_SYSROOT_STRIP = "1" -INHIBIT_PACKAGE_STRIP = "1" -INHIBIT_PACKAGE_DEBUG_SPLIT = "1" - -BBCLASSEXTEND = "native nativesdk" From patchwork Thu Aug 3 18:33:44 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 28377 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 679D5EB64DD for ; Thu, 3 Aug 2023 18:33:52 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.1949.1691087631156538637 for ; Thu, 03 Aug 2023 11:33:51 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); 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 043E3113E; Thu, 3 Aug 2023 11:34:33 -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 ESMTPA id 73CB53F793; Thu, 3 Aug 2023 11:33:49 -0700 (PDT) From: ross.burton@arm.com To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 2/5] arm-toolchain/arm-binary-toolchain: install to a versioned directory Date: Thu, 3 Aug 2023 19:33:44 +0100 Message-Id: <20230803183347.3414946-2-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230803183347.3414946-1-ross.burton@arm.com> References: <20230803183347.3414946-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 ; Thu, 03 Aug 2023 18:33:52 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4930 From: Ross Burton So that it's obvious which version of GCC is being used, install the files into a versioned directory under $libexecdir. Signed-off-by: Ross Burton --- .../external-arm-toolchain/arm-binary-toolchain.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/arm-binary-toolchain.inc b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/arm-binary-toolchain.inc index 44adfc8b..0e039a5b 100644 --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/arm-binary-toolchain.inc +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/arm-binary-toolchain.inc @@ -5,11 +5,11 @@ FILES:${PN} = "${libexecdir} ${bindir}" BINNAME = "${@d.getVar("BPN").strip("gcc-")}" do_install() { - install -d ${D}${bindir} ${D}${libexecdir}/${BPN}/ - cp -r ${S}/. ${D}${libexecdir}/${BPN} + install -d ${D}${bindir} ${D}${libexecdir}/${BP}/ + cp -r ${S}/. ${D}${libexecdir}/${BP} # Symlink all executables into bindir - for f in ${D}${libexecdir}/${BPN}/bin/*; do + for f in ${D}${libexecdir}/${BP}/bin/*; do ln -rs $f ${D}${bindir}/$(basename $f) done } From patchwork Thu Aug 3 18:33:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 28378 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 5E33EC001DF for ; Thu, 3 Aug 2023 18:33:52 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.1950.1691087631156698561 for ; Thu, 03 Aug 2023 11:33:51 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); 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 B846D12FC; Thu, 3 Aug 2023 11:34:33 -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 ESMTPA id 3CE5C3F793; Thu, 3 Aug 2023 11:33:50 -0700 (PDT) From: ross.burton@arm.com To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 3/5] arm-toolchain/gcc-arm-none-eabi-11.2: add new recipe Date: Thu, 3 Aug 2023 19:33:45 +0100 Message-Id: <20230803183347.3414946-3-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230803183347.3414946-1-ross.burton@arm.com> References: <20230803183347.3414946-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 ; Thu, 03 Aug 2023 18:33:52 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4931 From: Ross Burton Add back the 11.2 release of GCC, because TF-M has code generation problems with 11.3 onwards. This recipe has the major version embedded in the recipe name so that it has to be specifically asked for in a per-recipe basis. Signed-off-by: Ross Burton --- ci/toolchains.yml | 2 ++ .../gcc-arm-none-eabi-11.2_11.2-2022.02.bb | 23 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi-11.2_11.2-2022.02.bb diff --git a/ci/toolchains.yml b/ci/toolchains.yml index 056269b2..9b63bf28 100644 --- a/ci/toolchains.yml +++ b/ci/toolchains.yml @@ -16,3 +16,5 @@ target: - nativesdk-gcc-aarch64-none-elf - gcc-arm-none-eabi - nativesdk-gcc-arm-none-eabi + - gcc-arm-none-eabi-11.2 + - nativesdk-gcc-arm-none-eabi-11.2 diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi-11.2_11.2-2022.02.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi-11.2_11.2-2022.02.bb new file mode 100644 index 00000000..7fab1e13 --- /dev/null +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi-11.2_11.2-2022.02.bb @@ -0,0 +1,23 @@ +# Copyright (C) 2019 Garmin Ltd. or its subsidiaries +# Released under the MIT license (see COPYING.MIT for the terms) + +require arm-binary-toolchain.inc + +COMPATIBLE_HOST = "(x86_64|aarch64).*-linux" + +SUMMARY = "Arm GNU Toolchain - AArch32 bare-metal target (arm-none-eabi)" +LICENSE = "GPL-3.0-with-GCC-exception & GPL-3.0-only" + +LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=be4f8b5ff7319cd54f6c52db5d6f36b0" +LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=1f07179249795891179bb3798bac7887" + +BINNAME = "arm-none-eabi" + +SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu/${PV}/binrel/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}.tar.xz;name=gcc-${HOST_ARCH}" +SRC_URI[gcc-aarch64.sha256sum] = "ef1d82e5894e3908cb7ed49c5485b5b95deefa32872f79c2b5f6f5447cabf55f" +SRC_URI[gcc-x86_64.sha256sum] = "8c5acd5ae567c0100245b0556941c237369f210bceb196edfe5a2e7532c60326" + +S = "${WORKDIR}/gcc-arm-${PV}-${HOST_ARCH}-${BINNAME}" + +UPSTREAM_CHECK_URI = "https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/downloads" +UPSTREAM_CHECK_REGEX = "${BPN}-(?P.+)-${HOST_ARCH}-linux\.tar\.\w+" From patchwork Thu Aug 3 18:33:46 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 28381 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 5ED7FEB64DD for ; Thu, 3 Aug 2023 18:34:02 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.1924.1691087632665884834 for ; Thu, 03 Aug 2023 11:33:53 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); 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 7E9A2113E; Thu, 3 Aug 2023 11:34:34 -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 ESMTPA id F148B3F793; Thu, 3 Aug 2023 11:33:50 -0700 (PDT) From: ross.burton@arm.com To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 4/5] arm/trusted-firmware-m: explicitly use Arm GCC 11.2 Date: Thu, 3 Aug 2023 19:33:46 +0100 Message-Id: <20230803183347.3414946-4-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230803183347.3414946-1-ross.burton@arm.com> References: <20230803183347.3414946-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 ; Thu, 03 Aug 2023 18:34:02 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4933 From: Ross Burton TF-M recommend using GCC 11.2 as 11.3 onwards currently has code generation issues. Signed-off-by: Ross Burton --- .../recipes-bsp/trusted-firmware-m/trusted-firmware-m.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m.inc b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m.inc index 02acfb8b..eeb6135a 100644 --- a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m.inc +++ b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m.inc @@ -24,10 +24,13 @@ INHIBIT_DEFAULT_DEPS = "1" PACKAGE_ARCH = "${MACHINE_ARCH}" +# At present, TF-M needs GCC >10 but <11.3 so use 11.2: +# https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/docs/getting_started/tfm_getting_started.rst?h=TF-Mv1.8.0#n214 +# # See tools/requirements.txt for Python dependencies DEPENDS += "cmake-native \ ninja-native \ - gcc-arm-none-eabi-native \ + gcc-arm-none-eabi-11.2-native \ python3-cbor2-native \ python3-click-native \ python3-cryptography-native \ From patchwork Thu Aug 3 18:33:47 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 28379 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 6331CC41513 for ; Thu, 3 Aug 2023 18:34:02 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.1923.1691087632639197352 for ; Thu, 03 Aug 2023 11:33:53 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); 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 3EA3E12FC; Thu, 3 Aug 2023 11:34:35 -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 ESMTPA id BAC3A3F793; Thu, 3 Aug 2023 11:33:51 -0700 (PDT) From: ross.burton@arm.com To: meta-arm@lists.yoctoproject.org Cc: nd@arm.com Subject: [PATCH 5/5] arm-toolchain/gcc-arm-none-eabi: upgrade to 12.3.rel1 Date: Thu, 3 Aug 2023 19:33:47 +0100 Message-Id: <20230803183347.3414946-5-ross.burton@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230803183347.3414946-1-ross.burton@arm.com> References: <20230803183347.3414946-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 ; Thu, 03 Aug 2023 18:34:02 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/4932 From: Ross Burton Upgrade the 12.2 recipe to 12.3. Signed-off-by: Ross Burton --- ...-none-eabi_12.2.rel1.bb => gcc-arm-none-eabi_12.3.rel1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-arm-toolchain/recipes-devtools/external-arm-toolchain/{gcc-arm-none-eabi_12.2.rel1.bb => gcc-arm-none-eabi_12.3.rel1.bb} (82%) diff --git a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.2.rel1.bb b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.3.rel1.bb similarity index 82% rename from meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.2.rel1.bb rename to meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.3.rel1.bb index 48ddd163..6c33ec65 100644 --- a/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.2.rel1.bb +++ b/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/gcc-arm-none-eabi_12.3.rel1.bb @@ -12,8 +12,8 @@ LIC_FILES_CHKSUM:aarch64 = "file://share/doc/gcc/Copying.html;md5=0aef214b835259 LIC_FILES_CHKSUM:x86-64 = "file://share/doc/gcc/Copying.html;md5=7ba3bc8ef145b48e2756a844db2029a3" SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu/${PV}/binrel/arm-gnu-toolchain-${PV}-${HOST_ARCH}-${BINNAME}.tar.xz;name=gcc-${HOST_ARCH}" -SRC_URI[gcc-aarch64.sha256sum] = "7ee332f7558a984e239e768a13aed86c6c3ac85c90b91d27f4ed38d7ec6b3e8c" -SRC_URI[gcc-x86_64.sha256sum] = "84be93d0f9e96a15addd490b6e237f588c641c8afdf90e7610a628007fc96867" +SRC_URI[gcc-aarch64.sha256sum] = "14c0487d5753f6071d24e568881f7c7e67f80dd83165dec5164b3731394af431" +SRC_URI[gcc-x86_64.sha256sum] = "12a2815644318ebcceaf84beabb665d0924b6e79e21048452c5331a56332b309" S = "${WORKDIR}/arm-gnu-toolchain-${PV}-${HOST_ARCH}-${BINNAME}"