From mboxrd@z Thu Jan 1 00:00:00 1970 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 8D50BC433F5 for ; Wed, 20 Oct 2021 15:25:29 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.9620.1634743528823266271 for ; Wed, 20 Oct 2021 08:25:29 -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 E1213106F for ; Wed, 20 Oct 2021 08:25:27 -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 88F933F73D for ; Wed, 20 Oct 2021 08:25:27 -0700 (PDT) From: Ross Burton To: meta-arm@lists.yoctoproject.org Subject: [PATCH][master 3/5] arm/trusted-firmware-m: setting the toolchain file path in PACKAGECONFIG Date: Wed, 20 Oct 2021 16:25:20 +0100 Message-Id: <20211020152522.415448-3-ross.burton@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211020152522.415448-1-ross.burton@arm.com> References: <20211020152522.415448-1-ross.burton@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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 ; Wed, 20 Oct 2021 15:25:29 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/2282 From: Abdellatif El Khlifi Toolchain files toolchain_GNUARM.cmake and toolchain_ARMCLANG.cmake are located at trusted-firmware-m source directory. This commit sets that. Change-Id: If9c26f65b0c8111a6ff1f1a7d56610563efd501b Signed-off-by: Abdellatif El Khlifi --- .../trusted-firmware-m/trusted-firmware-m_1.3.0.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1= .3.0.bb b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.3.= 0.bb index de007c10..fa23191f 100644 --- a/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.3.0.bb +++ b/meta-arm/recipes-bsp/trusted-firmware-m/trusted-firmware-m_1.3.0.bb @@ -69,8 +69,8 @@ python() { =20 PACKAGECONFIG ??=3D "cc-gnuarm" # What compiler to use -PACKAGECONFIG[cc-gnuarm] =3D "-DTFM_TOOLCHAIN_FILE=3Dtoolchain_GNUARM.cm= ake,,gcc-arm-none-eabi-native" -PACKAGECONFIG[cc-armclang] =3D "-DTFM_TOOLCHAIN_FILE=3Dtoolchain_ARMCLAN= G.cmake,,armcompiler-native" +PACKAGECONFIG[cc-gnuarm] =3D "-DTFM_TOOLCHAIN_FILE=3D${S}/toolchain_GNUA= RM.cmake,,gcc-arm-none-eabi-native" +PACKAGECONFIG[cc-armclang] =3D "-DTFM_TOOLCHAIN_FILE=3D${S}/toolchain_AR= MCLANG.cmake,,armcompiler-native" # Whether to integrate the test suite PACKAGECONFIG[test-secure] =3D "-DTEST_S=3DON,-DTEST_S=3DOFF" PACKAGECONFIG[test-nonsecure] =3D "-DTEST_NS=3DON,-DTEST_NS=3DOFF" --=20 2.25.1