From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 27 15:08:41 2024 Received: (at submit) by debbugs.gnu.org; 27 Jul 2024 19:08:41 +0000 Received: from localhost ([127.0.0.1]:42418 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sXmmX-0004ye-1b for submit@debbugs.gnu.org; Sat, 27 Jul 2024 15:08:41 -0400 Received: from lists.gnu.org ([209.51.188.17]:44966) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sXmmU-0004yT-FD for submit@debbugs.gnu.org; Sat, 27 Jul 2024 15:08:39 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sXmmJ-0006CI-Oi for guix-patches@gnu.org; Sat, 27 Jul 2024 15:08:27 -0400 Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sXmmH-0001HI-Qm for guix-patches@gnu.org; Sat, 27 Jul 2024 15:08:27 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E27D4240101 for ; Sat, 27 Jul 2024 21:08:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1722107300; bh=I8Fgr3E+pah81W+KiYqSH9+qGqIdAXXy+fo08K9739Q=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version: Content-Transfer-Encoding:From; b=DfqHvNIxB/4trL30wRLeccdYuswwok/hFCfi6VGLqR4bGLu0cfle4l1TMWEV+ewuR u2jHN1dOq19redBMYX7SiIotPxb34HtXtvrR2h4Plds4Km3wTaipJZ+8DCXQRU7SEo 3yEnm6dW8E9YCkU13uk43AG0M8NfvrTnh6nmi1s28NA/aER3xwH1/o4NYYSJmulBmB NfYuxpEBgYy2mG4N80Ml0u0GxOjf1xPAF71d4tV2BKi3+CMYk+IkfnOvredhxJJpQQ 9Kz74Ita8laq1DRc42sZ9mKldFA8dHbvAHejQuoV61m2UiBV74mEn7iE9WWMoea0Su NAuVV1fFlWDuA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4WWZ042587z9rxF; Sat, 27 Jul 2024 21:08:20 +0200 (CEST) From: Dariqq To: guix-patches@gnu.org Subject: [PATCH] gnu: sbcl: Fix startup error on i686-linux. Date: Sat, 27 Jul 2024 18:58:05 +0000 Message-ID: MIME-Version: 1.0 X-Debbugs-Cc: Guillaume Le Vaillant , Katherine Cox-Buday , Munyoki Kilyungi , Sharlatan Hellseher , jgart Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=dariqq@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Dariqq 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.3 (--) Fixes https://issues.guix.gnu.org/69106. * gnu/packages/lisp.scm (sbcl) [#phases]: Invoke make.sh with smaller dynamic-space-size when building for x86-32. Change-Id: I08e8d2304d883973ab9a1b6a900ea9ee1679fac5 --- Played around with a 32 bit machine today and encountered this issue which has already been reported. As the check for the target happens inside a gexp this only causes rebuilds for i686-linux and not all architectures. gnu/packages/lisp.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 97f7dd357b..16ce1f25b6 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1425,8 +1425,9 @@ (define-public sbcl `("clisp"))) (string-append "--prefix=" (assoc-ref outputs "out")) - ,@(if (target-ppc32?) - ;; 3072 is too much for this architecture. + ,@(if (or (target-ppc32?) + (target-x86-32?)) + ;; 3072 is too much for these architecture. `("--dynamic-space-size=2048") `("--dynamic-space-size=3072")) "--with-sb-core-compression" base-commit: c6ff1d6ff761af0bd9bac5403fd834f04a14a192 -- 2.45.2 From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 22 04:03:51 2024 Received: (at 72325-done) by debbugs.gnu.org; 22 Aug 2024 08:03:51 +0000 Received: from localhost ([127.0.0.1]:36647 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sh2nP-0001RL-BQ for submit@debbugs.gnu.org; Thu, 22 Aug 2024 04:03:51 -0400 Received: from mout01.posteo.de ([185.67.36.65]:45357) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sh2nN-0001R9-6D for 72325-done@debbugs.gnu.org; Thu, 22 Aug 2024 04:03:50 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id BCA75240027 for <72325-done@debbugs.gnu.org>; Thu, 22 Aug 2024 10:02:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1724313777; bh=/wpBz9HK5C8lHs5wUpBkJw0g8BlirZ44xTm4Kn+FcvQ=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: From; b=c6w7XC3c9K4mrzrK/0AGoSDhT6F7/abKE1b+5stP52MsqwOcrQqOlGDE8uICHHs5f G4mw83+ta9RygdinAzaTdtM3Bivb9TVmfJJHDjUI/0sQ+sKsD5NFbscyt3ccpUoKeP Rs22/2YfE1odUs5tFO3WLxnmtpvfE6Qq5O6EY/DkYM7R+nu7mf4fuIOh+2JeGgj7PL RnlnDxL1aiCTEA1plgDgc2ZDHbb/BSLSagROfAEP/UN4ticum3S/aNl1/UzcTA2GMc X02yUUvAeDqBpwuMzVIX1FrrKzKe9fplCmEad/GoYqHAf3gRSZQ0kdV2G0HPhNLD3c ttHk1CUettGOQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4WqG0K0Rm2z9rxT; Thu, 22 Aug 2024 10:02:56 +0200 (CEST) From: Guillaume Le Vaillant To: Dariqq Subject: Re: [bug#72325] [PATCH] gnu: sbcl: Fix startup error on i686-linux. In-Reply-To: (dariqq@posteo.net's message of "Sat, 27 Jul 2024 18:58:05 +0000") References: Date: Thu, 22 Aug 2024 08:02:54 +0000 Message-ID: <87y14passx.fsf@kitej> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 72325-done Cc: 72325-done@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: -3.3 (---) --=-=-= Content-Type: text/plain Patch applied as 803f9d3038d3c3048079c63d51b7b40bff09f17a. Thanks. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iIUEAREKAC0WIQTLxZxm7Ce5cXlAaz5r6CCK3yH+PwUCZsbwrg8cZ2x2QHBvc3Rl by5uZXQACgkQa+ggit8h/j+CeQD/ZM09b/I+Q2W+m7BqgYywwNBKTIIg/cYg7Gc+ j+L7Xt8BAJEYpFrepk6BeQVsB9wCWWA27ST8NuY1NV3RAa0Jw5rU =R7dd -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Jun 21 03:08:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 19 Sep 2024 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