From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9C708158087 for ; Sun, 30 Jan 2022 20:43:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5981C2BC01E; Sun, 30 Jan 2022 20:43:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 428692BC01E for ; Sun, 30 Jan 2022 20:43:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F17A342F57 for ; Sun, 30 Jan 2022 20:43:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E40B2C8 for ; Sun, 30 Jan 2022 20:42:57 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1637184039.a0ffc952aee4b263c51016f9a11696741c3c6965.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/arm.toml X-VCS-Directories: arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a0ffc952aee4b263c51016f9a11696741c3c6965 X-VCS-Branch: wip/mattst88 Date: Sun, 30 Jan 2022 20:42:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 293eb68c-eda7-4650-b4a9-a4a2aa69ae20 X-Archives-Hash: d1ade4d7b674f020ff7cf1734ce90deb commit: a0ffc952aee4b263c51016f9a11696741c3c6965 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Nov 17 21:20:17 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Nov 17 21:20:39 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a0ffc952 arch: Add as experiment a first musl subarch (armv7a-hf) Signed-off-by: Andreas K. Hüttel gentoo.org> arch/arm.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm.toml b/arch/arm.toml index f28498df..712df346 100644 --- a/arch/arm.toml +++ b/arch/arm.toml @@ -46,6 +46,10 @@ CHOST = "armv6j-unknown-linux-gnueabihf" COMMON_FLAGS = "-O2 -pipe -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard" CHOST = "armv7a-unknown-linux-gnueabihf" +[arm.armv7a_hardfp_musl] +COMMON_FLAGS = "-O2 -pipe -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard" +CHOST = "armv7a-unknown-linux-musleabihf" + [arm.armeb] COMMON_FLAGS = "-O2 -pipe" CHOST = "armeb-unknown-linux-gnu"