From unknown Thu Jun 19 16:17:23 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#43369 <43369@debbugs.gnu.org> To: bug#43369 <43369@debbugs.gnu.org> Subject: Status: Emacs fails to configure on ARM Macs Reply-To: bug#43369 <43369@debbugs.gnu.org> Date: Thu, 19 Jun 2025 23:17:23 +0000 retitle 43369 Emacs fails to configure on ARM Macs reassign 43369 emacs submitter 43369 Itai Seggev severity 43369 normal tag 43369 fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 05:50:42 2020 Received: (at submit) by debbugs.gnu.org; 13 Sep 2020 09:50:42 +0000 Received: from localhost ([127.0.0.1]:49461 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHOec-0006ul-Ve for submit@debbugs.gnu.org; Sun, 13 Sep 2020 05:50:42 -0400 Received: from lists.gnu.org ([209.51.188.17]:47482) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHMc8-0003oY-P9 for submit@debbugs.gnu.org; Sun, 13 Sep 2020 03:39:59 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41964) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kHMc8-0004Zw-IN for bug-gnu-emacs@gnu.org; Sun, 13 Sep 2020 03:39:56 -0400 Received: from ark.cs.hmc.edu ([134.173.42.130]:47532) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kHMc3-0004nA-B1 for bug-gnu-emacs@gnu.org; Sun, 13 Sep 2020 03:39:56 -0400 Received: from knuth.cs.hmc.edu (knuth.cs.hmc.edu [IPv6:2620:102:2001:902:f069:3ff:fe3e:8a5c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by ark.cs.hmc.edu (Postfix) with ESMTPS id B400D64003D for ; Sun, 13 Sep 2020 00:39:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cs.hmc.edu; s=ark; t=1599982786; bh=aDA+2y79W0JhxRDll7foN7tVaqvt2LIJLtPOj7PoTGU=; h=Date:From:To:Subject; b=RLdf/wf7fXAapF5S756fEGBTpDGSRp5Ks6MVYvP6xdVakakPFLdaIHoW1y4plsR6y yHI94C13hP+sD4YvFt/PkUVYwY9o+CvkB2UAlBrorKOBEsPs/e8Ihhcv9cMImh98qf BSv778W8H/yilEDC6i8K34VBrHvRjMkddFAiiHlA= Received: (nullmailer pid 24521 invoked by uid 13452); Sun, 13 Sep 2020 07:39:46 -0000 Date: Sun, 13 Sep 2020 02:39:46 -0500 From: Itai Seggev To: bug-gnu-emacs@gnu.org Subject: Emacs fails to configure on ARM Macs Message-ID: <20200913073946.GA23939@knuth.cs.hmc.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Received-SPF: pass client-ip=134.173.42.130; envelope-from=is@cs.hmc.edu; helo=ark.cs.hmc.edu X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/13 03:39:47 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -26 X-Spam_score: -2.7 X-Spam_bar: -- X-Spam_report: (-2.7 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 13 Sep 2020 05:50:37 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) Hi. Out of the box, that is, using master (specifically SHA 18f390af8f11d24c) ./configure fails when building on an ARM Mac. The problem is that the canonical triple has the form aarch64-apple-darwin20.1.0, but configure.ac is looking for a triple of the form arm-*. After changing arm to aarach64, I was able to build successfully both a Cocoa and X11 versions (the latter pretty minimal, given that toolkits are still being ported). Here is the diff for ease of refence: diff --git a/configure.ac b/configure.ac index 33948fd776..40b63905ab 100644 --- a/configure.ac +++ b/configure.ac @@ -724,7 +724,7 @@ AC_DEFUN *-apple-darwin* ) case "${canonical}" in *-apple-darwin[0-9].*) unported=yes ;; - i[3456]86-* | x86_64-* | arm-* ) ;; + i[3456]86-* | x86_64-* | aarch64-* ) ;; * ) unported=yes ;; esac opsys=darwin -- Itai In 1997 a group of programmers started writing a desktop environment to fix a travesty they didn't create. Their program promptly found its way onto un*x systems everywhere. Today, still opposed by a software monopolist, they survive as soldiers of fortune. If you share their vision, if you know you can help, and if you can connect to internet, maybe you can join... the K-Team. From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 09:41:38 2020 Received: (at 43369) by debbugs.gnu.org; 13 Sep 2020 13:41:38 +0000 Received: from localhost ([127.0.0.1]:49757 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHSG6-0006fR-A1 for submit@debbugs.gnu.org; Sun, 13 Sep 2020 09:41:38 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45226) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHSG1-0006f9-Mk for 43369@debbugs.gnu.org; Sun, 13 Sep 2020 09:41:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=ubtN3KjTvBpQ5qklRXuYj9mVKJ9zxZrxCh4Qa2totRU=; b=Yh24ar2Yu87RG/6HOf6qzU3xxo j1wa/FxcQgRwj5Ssh7wCth56o2TfwEnh0kcmGcG92+wn+ZuYH/BXpAmF2QM00o2hQZ/wRVf1rm9xa LDUBzLtKom4v9E4zCKo/FvdostOmXz7TxwvOvXRfkGXRv067dhIhXWtsKhsP9nb5smf4=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHSFp-0003T1-Oo; Sun, 13 Sep 2020 15:41:22 +0200 From: Lars Ingebrigtsen To: Itai Seggev Subject: Re: bug#43369: Emacs fails to configure on ARM Macs References: <20200913073946.GA23939@knuth.cs.hmc.edu> X-Now-Playing: Paula Frazer and Tarnation's _What Is And Was_: "To The Ocean" Date: Sun, 13 Sep 2020 15:41:16 +0200 In-Reply-To: <20200913073946.GA23939@knuth.cs.hmc.edu> (Itai Seggev's message of "Sun, 13 Sep 2020 02:39:46 -0500") Message-ID: <87zh5tx08z.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Itai Seggev writes: > Out of the box, that is, using master (specifically SHA 18f390af8f11d24c) > ./configure fails when building on an ARM Mac. The problem is that the > canonical triple has the form aarch64-apple-darwi [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43369 Cc: Roland Kaufmann , 43369@debbugs.gnu.org, Alan Third X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Itai Seggev writes: > Out of the box, that is, using master (specifically SHA 18f390af8f11d24c) > ./configure fails when building on an ARM Mac. The problem is that the > canonical triple has the form aarch64-apple-darwin20.1.0, but configure.ac is > looking for a triple of the form arm-*. > > After changing arm to aarach64, I was able to build successfully both a Cocoa > and X11 versions (the latter pretty minimal, given that toolkits are still > being ported). > > Here is the diff for ease of refence: > > diff --git a/configure.ac b/configure.ac > index 33948fd776..40b63905ab 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -724,7 +724,7 @@ AC_DEFUN > *-apple-darwin* ) > case "${canonical}" in > *-apple-darwin[0-9].*) unported=yes ;; > - i[3456]86-* | x86_64-* | arm-* ) ;; > + i[3456]86-* | x86_64-* | aarch64-* ) ;; The arm-* bit was added recently to Emacs, from a two-year-old patch: commit 4cba236749aafade7bd88cf2a10be48f44983faa Author: Roland Kaufmann AuthorDate: Thu Dec 27 15:51:49 2018 +0100 Commit: Alan Third CommitDate: Sat Aug 15 17:06:31 2020 +0100 Allow build configuration on Apple ARM devices (bug#41994) So it sounds like arm-* was in use, and it's now aarch64-*? In which case adding the latter, instead of altering it, is the right change here? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 09:41:41 2020 Received: (at control) by debbugs.gnu.org; 13 Sep 2020 13:41:41 +0000 Received: from localhost ([127.0.0.1]:49760 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHSGD-0006fk-1l for submit@debbugs.gnu.org; Sun, 13 Sep 2020 09:41:41 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45266) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHSGA-0006fQ-P4 for control@debbugs.gnu.org; Sun, 13 Sep 2020 09:41:39 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=72yPQVC5gPVebdb4qCd4UTGtKrQ6Lhtay66ipRALmag=; b=OCfAuzV1FoiUr8K+luHRfOVe85 VlR4vkwvxxq//wufYRojCWgNhUdDZiQUxt7mXxVU1yAGVtz7mWxzpiGMbKwXK/vrCLDm+4uQug+82 5d5i90Sl13fzEQQxAo94uHI8/6lSsliMsdA9wJzror4LHtqBw7lGBY5hD8qutVINQUCw=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHSG3-0003TS-02 for control@debbugs.gnu.org; Sun, 13 Sep 2020 15:41:33 +0200 Date: Sun, 13 Sep 2020 15:41:29 +0200 Message-Id: <87y2ldx08m.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #43369 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 43369 + patch quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 43369 + patch quit From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 12:07:57 2020 Received: (at 43369) by debbugs.gnu.org; 13 Sep 2020 16:07:57 +0000 Received: from localhost ([127.0.0.1]:51437 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHUXk-0004XD-Oq for submit@debbugs.gnu.org; Sun, 13 Sep 2020 12:07:57 -0400 Received: from mailout-l3b-97.contactoffice.com ([212.3.242.97]:36492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHUXh-0004Wy-VF for 43369@debbugs.gnu.org; Sun, 13 Sep 2020 12:07:56 -0400 Received: from smtpauth1.co-bxl (smtpauth1.co-bxl [10.2.0.15]) by mailout-l3b-97.contactoffice.com (Postfix) with ESMTP id 5D7F26E6; Sun, 13 Sep 2020 18:07:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1600013267; s=20200222-6h9o; d=idiocy.org; i=alan@idiocy.org; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:Content-Type:In-Reply-To; l=932; bh=E712H9QbjIDj4CBMotD76DVsB4AvpdhoEz8ypr7nwCg=; b=TnlzQFWR144WcBQt6v5xeOy9oTZ/eDEZRLEFe8E7rIuzBidMwB/t6PaazPRiNGVW pISdtU5J7tCZBtOyOJjIJ/FqjbPnRgVFwePRiqC5Q3CBAPr7ABjzkdS59EUQK9PWjst I/EmQOE1A9OF1s1WqFwloZY5poE2trZGgRtRQWBHlNtHJEFSAozO3K4gV0GGUzgqah6 68BltbXfsD6JIiWE2kdQmmjVqmPc0Ns8oSmSONXbc6ZVPNKXHG4bi804u2IkNqNewBl VWVUAcAITLlfq6t7xPTwRss36hn7iGvHNDRKGhqnW5M32Grm52+G0zSgiGXDngj5GY0 Hc4WUrYbmg== Received: by smtp.mailfence.com with ESMTPA ; Sun, 13 Sep 2020 18:07:44 +0200 (CEST) Received: by breton.holly.idiocy.org (Postfix, from userid 501) id 551D520253DD5C; Sun, 13 Sep 2020 17:07:43 +0100 (BST) Date: Sun, 13 Sep 2020 17:07:43 +0100 From: Alan Third To: Lars Ingebrigtsen Subject: Re: bug#43369: Emacs fails to configure on ARM Macs Message-ID: <20200913160743.GF93185@breton.holly.idiocy.org> Mail-Followup-To: Alan Third , Lars Ingebrigtsen , Itai Seggev , Roland Kaufmann , 43369@debbugs.gnu.org References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87zh5tx08z.fsf@gnus.org> X-Spam-Flag: NO X-Spam-Status: No, hits=-1.0 required=4.7 symbols=ALL_TRUSTED device=10.2.0.21 X-ContactOffice-Account: com:241649512 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 43369 Cc: Roland Kaufmann , 43369@debbugs.gnu.org, Itai Seggev X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Sun, Sep 13, 2020 at 03:41:16PM +0200, Lars Ingebrigtsen wrote: > > The arm-* bit was added recently to Emacs, from a two-year-old patch: > > commit 4cba236749aafade7bd88cf2a10be48f44983faa > Author: Roland Kaufmann > AuthorDate: Thu Dec 27 15:51:49 2018 +0100 > Commit: Alan Third > CommitDate: Sat Aug 15 17:06:31 2020 +0100 > > Allow build configuration on Apple ARM devices (bug#41994) > > So it sounds like arm-* was in use, and it's now aarch64-*? In which > case adding the latter, instead of altering it, is the right change here? I'm unsure. I've googled a bit and found stuff saying that Apple used to use arm64, but now everyone uses aarch64. I don't know if the original patch had ever actually been tested on an ARM Mac. If Roland Kaufmann doesn't respond with a better plan, I suppose we'd be safest just adding it as you suggest. -- Alan Third From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 19:42:02 2020 Received: (at 43369) by debbugs.gnu.org; 13 Sep 2020 23:42:02 +0000 Received: from localhost ([127.0.0.1]:52067 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHbdB-0005Bc-PW for submit@debbugs.gnu.org; Sun, 13 Sep 2020 19:42:02 -0400 Received: from quimby.gnus.org ([95.216.78.240]:50780) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHbd9-0005B7-WA for 43369@debbugs.gnu.org; Sun, 13 Sep 2020 19:42:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=HTCArJFdIx3ZlLC7BgtALnTGi9q5fkBrj5hYLwHa4Uk=; b=RqmEr43fxjTvoUiZr27+zcJbnG 8tLJ9ii7C+/drhzj/qK6SQRbodUgPrEFRAea25pg5vqu/xfKb8BjYpyuWnorMGHUOgI8u7NGVshAp AMz0oHsJKwy5tB9VTwJIu9gp5YibHDT4AwEdgQ5loTWn7ikSJQgr8HgSPuoLMTDCQ1fI=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHbd0-0001Dm-DP; Mon, 14 Sep 2020 01:41:52 +0200 From: Lars Ingebrigtsen To: Itai Seggev Subject: Re: bug#43369: Emacs fails to configure on ARM Macs References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> <20200913160743.GF93185@breton.holly.idiocy.org> <20200913232937.GB23939@knuth.cs.hmc.edu> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAFVBMVEX8/PXl3tOpnJhi V1mHd3c3LzT///98Xaj6AAAAAWJLR0QGYWa4fQAAAAd0SU1FB+QJDRceJThXF/UAAAGqSURBVDjL bdRtdqwgDAZgHL3/xdMF1JAuoIQsoAQ3ILL/rdzgV/F08m98Tl5InBljjuqstRN5e5R+Nma8AYRu 0CcnjNbiQuMv2NFcaY7zZ3eDaUCoge4Gg9J2/EaZSfJo3sGL8mjfRb24BdOA8Pf4pqOzjijOf8FO mBLRfK7khgkgKYjvntAhgAtCFJ7X7SxEXaJQpie8wHkF+guRc31eslxznDNEl+udCslspwYGjxso MKZvi80cQ3TbVAHQHx326nAbop6d0mqhObz/cRtUIAkwNzBEyQqcKSDExxm86cUqQIzN1gfgNbqj I0DT0QMHqvclQgptFLBP4CgQpQOuyRVAs3xdZHgsUTuCAoo8onooIMJFzxBeH1Dn88wqnOsbPFfS 44oYflzdPOXmZ9A7j0Cgz4NIbt55BZcraOK2R10Q01J0iqCw7lHmgm0pmbIHlPURFb2C6JjpgDPq 4ytEnUK/PiBLC6+FcB+vhH3AO2rQZXApmWvcA/iAUjw9oOcoZa9EvDXwLwAfQLm0MAQsZ3GIzYAD uhsiNPBydEHxbUc3zXDV+e/zvrr/z5Nz6RlXsqsAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjAtMDkt MTNUMjM6MzA6MzYrMDA6MDBUqHglAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIwLTA5LTEzVDIzOjMw OjM2KzAwOjAwJfXAmQAAAABJRU5ErkJggg== X-Now-Playing: Rema Rema's _Fond Reflections (1): Wheel in the Roses (Extended)_: "Entry" Date: Mon, 14 Sep 2020 01:41:48 +0200 In-Reply-To: <20200913232937.GB23939@knuth.cs.hmc.edu> (Itai Seggev's message of "Sun, 13 Sep 2020 18:29:37 -0500") Message-ID: <87lfhddz2b.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Itai Seggev writes: > FWIW, uname -m and clang --version both report arm64 (not arm), but it seems > that config.sub normalizes this to aarach64. See commit 5d89a9c2846d32b47. Ah, this was in July of this year: Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43369 Cc: Roland Kaufmann , Alan Third , 43369@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Itai Seggev writes: > FWIW, uname -m and clang --version both report arm64 (not arm), but it seems > that config.sub normalizes this to aarach64. See commit 5d89a9c2846d32b47. Ah, this was in July of this year: + arm64-*) + cpu=aarch64 + ;; So I think Itai's patch looks correct, and I'm applying it to Emacs 28. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 19:43:14 2020 Received: (at 43369) by debbugs.gnu.org; 13 Sep 2020 23:43:14 +0000 Received: from localhost ([127.0.0.1]:52071 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHbeM-0005DT-5X for submit@debbugs.gnu.org; Sun, 13 Sep 2020 19:43:14 -0400 Received: from quimby.gnus.org ([95.216.78.240]:50802) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHbeL-0005DG-4H for 43369@debbugs.gnu.org; Sun, 13 Sep 2020 19:43:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Khg6YEGEop5NP4P7S+Ihk/BsndwdjVFCylb6Cznr4iY=; b=ejbJkD323LM1FRXtb2JjYa+EUH rpf1+8Op3mIiJfVbg0CVs6fkiyEDNjzfuBg31hnCtXz0DtvFUUnLLIHLXtqRAaKBG+DSBCZlKqRWJ 9dtJLJh5tO7jvKBZ9qhlXLJOOzQWj7IFHFvbbpi6L0WSc3Ga0zxmKidcRZ23jxj5L5bc=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHbeC-0001EI-BF; Mon, 14 Sep 2020 01:43:06 +0200 From: Lars Ingebrigtsen To: Itai Seggev Subject: Re: bug#43369: Emacs fails to configure on ARM Macs References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> <20200913160743.GF93185@breton.holly.idiocy.org> <20200913232937.GB23939@knuth.cs.hmc.edu> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAFVBMVEX8/PXl3tOpnJhi V1mHd3c3LzT///98Xaj6AAAAAWJLR0QGYWa4fQAAAAd0SU1FB+QJDRceJThXF/UAAAGqSURBVDjL bdRtdqwgDAZgHL3/xdMF1JAuoIQsoAQ3ILL/rdzgV/F08m98Tl5InBljjuqstRN5e5R+Nma8AYRu 0CcnjNbiQuMv2NFcaY7zZ3eDaUCoge4Gg9J2/EaZSfJo3sGL8mjfRb24BdOA8Pf4pqOzjijOf8FO mBLRfK7khgkgKYjvntAhgAtCFJ7X7SxEXaJQpie8wHkF+guRc31eslxznDNEl+udCslspwYGjxso MKZvi80cQ3TbVAHQHx326nAbop6d0mqhObz/cRtUIAkwNzBEyQqcKSDExxm86cUqQIzN1gfgNbqj I0DT0QMHqvclQgptFLBP4CgQpQOuyRVAs3xdZHgsUTuCAoo8onooIMJFzxBeH1Dn88wqnOsbPFfS 44oYflzdPOXmZ9A7j0Cgz4NIbt55BZcraOK2R10Q01J0iqCw7lHmgm0pmbIHlPURFb2C6JjpgDPq 4ytEnUK/PiBLC6+FcB+vhH3AO2rQZXApmWvcA/iAUjw9oOcoZa9EvDXwLwAfQLm0MAQsZ3GIzYAD uhsiNPBydEHxbUc3zXDV+e/zvrr/z5Nz6RlXsqsAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjAtMDkt MTNUMjM6MzA6MzYrMDA6MDBUqHglAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIwLTA5LTEzVDIzOjMw OjM2KzAwOjAwJfXAmQAAAABJRU5ErkJggg== X-Now-Playing: Rema Rema's _Fond Reflections (1): Wheel in the Roses (Extended)_: "Instrumental " Date: Mon, 14 Sep 2020 01:43:02 +0200 In-Reply-To: <20200913232937.GB23939@knuth.cs.hmc.edu> (Itai Seggev's message of "Sun, 13 Sep 2020 18:29:37 -0500") Message-ID: <87h7s1dz09.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Itai Seggev writes: > FWIW, uname -m and clang --version both report arm64 (not arm), but it seems > that config.sub normalizes this to aarach64. See commit 5d89a9c2846d32b47. On second thought -- that's just arm-64, though. Does arm-32 still exist in an Apple context? Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43369 Cc: Roland Kaufmann , Alan Third , 43369@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Itai Seggev writes: > FWIW, uname -m and clang --version both report arm64 (not arm), but it seems > that config.sub normalizes this to aarach64. See commit 5d89a9c2846d32b47. On second thought -- that's just arm-64, though. Does arm-32 still exist in an Apple context? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 13 20:12:28 2020 Received: (at 43369) by debbugs.gnu.org; 14 Sep 2020 00:12:28 +0000 Received: from localhost ([127.0.0.1]:52118 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHc6c-0005ut-R7 for submit@debbugs.gnu.org; Sun, 13 Sep 2020 20:12:28 -0400 Received: from ark.cs.hmc.edu ([134.173.42.130]:33916) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHbRI-0002jS-8U for 43369@debbugs.gnu.org; Sun, 13 Sep 2020 19:29:45 -0400 Received: from knuth.cs.hmc.edu (knuth.cs.hmc.edu [IPv6:2620:102:2001:902:f069:3ff:fe3e:8a5c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by ark.cs.hmc.edu (Postfix) with ESMTPS id 268CF640128; Sun, 13 Sep 2020 16:29:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cs.hmc.edu; s=ark; t=1600039777; bh=bnLy01jHX5ZkzOUI/mY2Thr6+LQudVCgRb0Nxt4bcvQ=; h=Date:From:To:Subject:References:In-Reply-To; b=BlY51CgoUnsM/FOC7P8/lbP6ADJ9BclZjlfoourhrsNsXSbkzGzc/UTABYQlOYwEa dr4ntZZaLfog+A9IJTisEw85Rhi35TS4jsgTxnrXkrWW6x2e26r9sMcOLSsCssZo6l 4/ZknIn+2dyE8BkCe7RoqgVx9RgQ+vfS0Rd+vhDg= Received: (nullmailer pid 40300 invoked by uid 13452); Sun, 13 Sep 2020 23:29:37 -0000 Date: Sun, 13 Sep 2020 18:29:37 -0500 From: Itai Seggev To: Alan Third , Lars Ingebrigtsen , Roland Kaufmann , 43369@debbugs.gnu.org Subject: Re: bug#43369: Emacs fails to configure on ARM Macs Message-ID: <20200913232937.GB23939@knuth.cs.hmc.edu> References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> <20200913160743.GF93185@breton.holly.idiocy.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200913160743.GF93185@breton.holly.idiocy.org> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 43369 X-Mailman-Approved-At: Sun, 13 Sep 2020 20:12:25 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Sun, Sep 13, 2020 at 05:07:43PM +0100, Alan Third wrote: > On Sun, Sep 13, 2020 at 03:41:16PM +0200, Lars Ingebrigtsen wrote: > > > > The arm-* bit was added recently to Emacs, from a two-year-old patch: > > > > commit 4cba236749aafade7bd88cf2a10be48f44983faa > > Author: Roland Kaufmann > > AuthorDate: Thu Dec 27 15:51:49 2018 +0100 > > Commit: Alan Third > > CommitDate: Sat Aug 15 17:06:31 2020 +0100 > > > > Allow build configuration on Apple ARM devices (bug#41994) > > > > So it sounds like arm-* was in use, and it's now aarch64-*? In which > > case adding the latter, instead of altering it, is the right change here? > > I'm unsure. I've googled a bit and found stuff saying that Apple used > to use arm64, but now everyone uses aarch64. I don't know if the > original patch had ever actually been tested on an ARM Mac. > > If Roland Kaufmann doesn't respond with a better plan, I suppose we'd > be safest just adding it as you suggest. FWIW, uname -m and clang --version both report arm64 (not arm), but it seems that config.sub normalizes this to aarach64. See commit 5d89a9c2846d32b47. -- Itai In 1997 a group of programmers started writing a desktop environment to fix a travesty they didn't create. Their program promptly found its way onto un*x systems everywhere. Today, still opposed by a software monopolist, they survive as soldiers of fortune. If you share their vision, if you know you can help, and if you can connect to internet, maybe you can join... the K-Team. From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 14 03:28:22 2020 Received: (at 43369) by debbugs.gnu.org; 14 Sep 2020 07:28:22 +0000 Received: from localhost ([127.0.0.1]:52393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHiuT-0001tM-Th for submit@debbugs.gnu.org; Mon, 14 Sep 2020 03:28:22 -0400 Received: from mail-lj1-f196.google.com ([209.85.208.196]:40484) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHiuS-0001t7-92 for 43369@debbugs.gnu.org; Mon, 14 Sep 2020 03:28:20 -0400 Received: by mail-lj1-f196.google.com with SMTP id s205so17722726lja.7 for <43369@debbugs.gnu.org>; Mon, 14 Sep 2020 00:28:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=W2QKL7JSFz6g8FjkEYH/7SuvDzsd68Ddswqs/tTg3y4=; b=j1P1r3LiA46C9B+YGgR0/v2ml9QRZIhw+dZjg4C9iBixEpetCdyVvs/SUseJcu/Kx7 6LC2khWeB13/pjtWKUCWK5Ou6b6ELwp2RlYVxa3CXSmlY0Pyi6Vny6RBnz/vQL4ONFko tBLRGV+UnF8w7z95XWz6C0KiJN2aLf3lIAmhfaKCAVUBo5L33ZO8QWHwNASwGZMsuldR s/KqApCO0Vd7Bu0hpcRezfhm8w7AdiLHNfPLqcipcfG3KX0v+Wx02ftEXZ8i5K8J8I8Y eefr73FNJxJc/gm3Cf5sTRn16KsvkfDexDp/J4SajXRhCgTqgNaJxcIiZf/hgybMz99l vO+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:subject:to:references:from:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=W2QKL7JSFz6g8FjkEYH/7SuvDzsd68Ddswqs/tTg3y4=; b=gF2BYlKFwIaffivB+ERvGfoajkJAB50kSmXkGECfhIBdlKwO+gHyqtBHTP0xp8YUVF oi1DMd2kNzjeRLzgIA+kmxKDzptXZ6FYtyo7cxiBOLH39eksLnDwcXtlv8nZFeDoI/2G tOwl2BoH811JyTYNklVPY2r/IRG02bsKCZIVPjFaL2RigWq2zBBoqahNChm5Qf6dwrgS 236n28ElnnP3y4a0keAKMqTVI5mwiI3Obo1OEiLQcPhNPGRYpA6roUFDX7TECgvpE19y KUidiFm24uYYtwcHibVGNq2vHCuW7HASehvVJScFCkKhnPiCafGlRsXe/vKXsubwb6qr 6uhA== X-Gm-Message-State: AOAM530bQ0JFrb9fb5I5jRxgFlng7BKiJ1bP4+BblXCUvo18ukdo1R2u sbQQ+HOacj66mZqQ/BzeEVGGJOdKsP4= X-Google-Smtp-Source: ABdhPJwZHQrlrX1UqquuuhczEX9j4avOaxxWd6p2K+drcuSDDyyGRkObLYu024m/1N+2YvE/Vgs8jw== X-Received: by 2002:a05:651c:107b:: with SMTP id y27mr4266946ljm.338.1600068493984; Mon, 14 Sep 2020 00:28:13 -0700 (PDT) Received: from [192.168.1.11] (ti0149q161-1519.bb.online.no. [82.164.71.2]) by smtp.gmail.com with ESMTPSA id i22sm3884054ljb.53.2020.09.14.00.28.12 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 14 Sep 2020 00:28:13 -0700 (PDT) Subject: Re: bug#43369: Emacs fails to configure on ARM Macs To: Alan Third , Lars Ingebrigtsen , Itai Seggev , 43369@debbugs.gnu.org References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> <20200913160743.GF93185@breton.holly.idiocy.org> From: Roland Kaufmann Message-ID: <56d9c466-16b1-b863-89fc-893c686e3a3f@gmail.com> Date: Mon, 14 Sep 2020 09:28:11 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200913160743.GF93185@breton.holly.idiocy.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 43369 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.5 (/) On 13. Sep. 2020 at 18:07, Alan Third wrote: > I'm unsure. I've googled a bit and found stuff saying that Apple used > to use arm64, but now everyone uses aarch64. I don't know if the > original patch had ever actually been tested on an ARM Mac. The original was tested on an earlier architecture. Porque no los dos? That is: i[3456]86-* | x86_64-* | arm-* | aarch64-*) ;; Yours sincerely, Roland Kaufmann From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 14 06:35:42 2020 Received: (at 43369) by debbugs.gnu.org; 14 Sep 2020 10:35:42 +0000 Received: from localhost ([127.0.0.1]:52800 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHlpl-0004kZ-UL for submit@debbugs.gnu.org; Mon, 14 Sep 2020 06:35:42 -0400 Received: from quimby.gnus.org ([95.216.78.240]:57200) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHlpi-0004kG-3v for 43369@debbugs.gnu.org; Mon, 14 Sep 2020 06:35:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=LC9STFUHvO/LFMo1a0moMfyhPcBLyug3nzUp+Os6kU4=; b=fImx8Z/5fj+pbjcwzQC/m53TLE 0z9B/BtWyg1M9LQJ0yp+pzfuIZL6w/pbQfDBoyYjNLVTkmv3isDLXkal7PJNyMEla3jnZQutgrysi lKCPrnaZ+JEmTsq9VNZYxwzxs/QEEwtODEDnP39IN9fDT7gF7juHrpo6Jpnm0UImQZJA=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHlpR-0000JL-WA; Mon, 14 Sep 2020 12:35:31 +0200 From: Lars Ingebrigtsen To: Roland Kaufmann Subject: Re: bug#43369: Emacs fails to configure on ARM Macs References: <20200913073946.GA23939@knuth.cs.hmc.edu> <87zh5tx08z.fsf@gnus.org> <20200913160743.GF93185@breton.holly.idiocy.org> <56d9c466-16b1-b863-89fc-893c686e3a3f@gmail.com> X-Now-Playing: Ossia's _Devil's Dance_: "(untitled)" Date: Mon, 14 Sep 2020 12:35:20 +0200 In-Reply-To: <56d9c466-16b1-b863-89fc-893c686e3a3f@gmail.com> (Roland Kaufmann's message of "Mon, 14 Sep 2020 09:28:11 +0200") Message-ID: <87tuw0d4t3.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Roland Kaufmann writes: > The original was tested on an earlier architecture. Porque no los dos? > That is: > > i[3456]86-* | x86_64-* | arm-* | aarch64-*) ; ; Yup. I've now made this change on the trunk. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 43369 Cc: Alan Third , 43369@debbugs.gnu.org, Itai Seggev X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Roland Kaufmann writes: > The original was tested on an earlier architecture. Porque no los dos? > That is: > > i[3456]86-* | x86_64-* | arm-* | aarch64-*) ;; Yup. I've now made this change on the trunk. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Sep 14 06:35:50 2020 Received: (at control) by debbugs.gnu.org; 14 Sep 2020 10:35:50 +0000 Received: from localhost ([127.0.0.1]:52803 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHlpu-0004m1-5J for submit@debbugs.gnu.org; Mon, 14 Sep 2020 06:35:50 -0400 Received: from quimby.gnus.org ([95.216.78.240]:57244) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kHlpr-0004ki-Va for control@debbugs.gnu.org; Mon, 14 Sep 2020 06:35:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=HoYWbKMwKT0dcAL0Vd2jcTKfwVkgDS8602QDd9rvBzQ=; b=WFvX+rA6fLL7A9yyx1zwyNzg1H OTrH+ebJLpm8D+R1G9SuI1lhlnpxEQDDiJ4eQhQZiBYMyGVTLCzkXWU1E6NQJe881z6o1ZLWkHV9g wJmZX5rljtue9OVzluQ4onTsxvxDMwIdpx0tDUpqln7FCxWzNpTy3hjce5h35tzaQ+Ps=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kHlpj-0000JW-W8 for control@debbugs.gnu.org; Mon, 14 Sep 2020 12:35:42 +0200 Date: Mon, 14 Sep 2020 12:35:39 +0200 Message-Id: <87sgbkd4sk.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #43369 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 43369 fixed close 43369 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 43369 fixed close 43369 28.1 quit From unknown Thu Jun 19 16:17:23 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 12 Oct 2020 11:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator