From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 08 17:35:40 2021 Received: (at 46987-done) by debbugs.gnu.org; 8 Mar 2021 22:35:40 +0000 Received: from localhost ([127.0.0.1]:45136 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJOTU-0007KC-BI for submit@debbugs.gnu.org; Mon, 08 Mar 2021 17:35:40 -0500 Received: from mira.cbaines.net ([212.71.252.8]:58856) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lJOTS-0007K4-1i for 46987-done@debbugs.gnu.org; Mon, 08 Mar 2021 17:35:39 -0500 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:8ac0:b4c7:f5c8:7caa]) by mira.cbaines.net (Postfix) with ESMTPSA id F328627BC50 for <46987-done@debbugs.gnu.org>; Mon, 8 Mar 2021 22:35:36 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 95d4ede5 for <46987-done@debbugs.gnu.org>; Mon, 8 Mar 2021 22:35:36 +0000 (UTC) References: <20210307133406.17656-1-mail@cbaines.net> User-agent: mu4e 1.4.15; emacs 27.1 From: Christopher Baines To: 46987-done@debbugs.gnu.org Subject: Re: [bug#46987] [PATCH] gnu: rust-1.19: Don't include i686-linux in supported-systems. In-reply-to: <20210307133406.17656-1-mail@cbaines.net> Date: Mon, 08 Mar 2021 22:35:36 +0000 Message-ID: <87eegpb7ev.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 46987-done 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 (-) --=-=-= Content-Type: text/plain Christopher Baines writes: > Currently rust fails to build for i686-linux, so this will avoid computing > lots of derivations that depend on rust, but won't be possible to build. > > * gnu/packages/rust.scm (rust-1.19)[supported-systems]: Switch hardcoding only > supporting x86_64-linux for supporting all supported systems, other than > i686-linux. > --- > gnu/packages/rust.scm | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm > index 98a6bfffa5..1fc540f0f8 100644 > --- a/gnu/packages/rust.scm > +++ b/gnu/packages/rust.scm > @@ -453,7 +453,9 @@ test = { path = \"../libtest\" } > (variable "LIBRARY_PATH") > (files '("lib" "lib64"))))) > > - (supported-systems '("x86_64-linux")) > + (supported-systems > + (delete "i686-linux" ; fails to build, see #35519 > + %supported-systems)) > (synopsis "Compiler for the Rust programming language") > (description "Rust is a systems programming language that provides memory > safety and thread safety guarantees.") I've gone ahead and pushed this to master as f5c6e6966c020722700ef0343ab0a6030e2d61b5. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmBGprhfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xea0hAAhfUrJPew8IARrJkXw0Yy23XwsXTYbjoW 5XeyZK8NPXbDIGi6KzQKg5G0BiIX4fV9qJFmYvoRkigedMUIBIjYO/IyMRpflVV1 pxyqdnth2yfQq1g9R0ZPgE8o/rQcn4ZyR0Tc9pZTG2F+SBNLxqYrTM7sVpv75SNm xulnYyYGZ78eWvAKqzE3qQc2mmdKMHMHy+NZngwKtZN5vQhpKFg1na9WSet1erEt Z15HX6u0pivD+uENq2SG/Bw5N7caJs5mm/ehKH4cuHqssC5k6zMiZHxckoRd7UW1 7c6wwvTusnBoo7LM9qFvQ/MC06gsS8dCsTL7FnvJnasjHOXHzdrewmhaO63B/JPp 2B2HZlWk+pCjz7HILKgqQT9UCTRBKdcfqXVk/f77BPADOsRotGT8j8mvePnejCO4 vB9LeObUzDQ+/x4H0BIZ/IEICy69MXDmD8RbDPqwVLK7/tCc0eCdbGsU5+igVygZ cUVeTL5RZHEA6n2m+K5KOp/ex0bkES7BTA+EtXqQA6l9YABN92PbM/46DreNYWRi POvJZWyNIjAX9C5LIC2Wz6+tldP0rjz1jCBuI5rLrHVQPDGyox5DmKr7jtI5OzlD 0nakcokP9oF5CXl6DS33lDNgYzDtbsFXaY+ICq17VewmED7QW0WHfseyoNTVm5Ly 0wuSQCaTYoc= =JhN1 -----END PGP SIGNATURE----- --=-=-=--