Received: (at 53506) by debbugs.gnu.org; 24 Jan 2022 17:15:22 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Jan 24 12:15:22 2022 Received: from localhost ([127.0.0.1]:45569 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1nC2w5-0003w3-V8 for submit <at> debbugs.gnu.org; Mon, 24 Jan 2022 12:15:22 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:55380) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1nC2w2-0003mF-NC for 53506 <at> debbugs.gnu.org; Mon, 24 Jan 2022 12:15:21 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 2125C123 for <53506 <at> debbugs.gnu.org>; Mon, 24 Jan 2022 18:15:12 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eqm9dAjNHXHk for <53506 <at> debbugs.gnu.org>; Mon, 24 Jan 2022 18:15:10 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 6366EF8 for <53506 <at> debbugs.gnu.org>; Mon, 24 Jan 2022 18:15:10 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= <ludo@HIDDEN> To: 53506 <at> debbugs.gnu.org Subject: Re: bug#53506: guix-packages-base.drv leads to segfault on i686-linux References: <87o841qdh4.fsf@HIDDEN> Date: Mon, 24 Jan 2022 18:15:09 +0100 In-Reply-To: <87o841qdh4.fsf@HIDDEN> ("Ludovic =?utf-8?Q?Court=C3=A8s=22?= =?utf-8?Q?'s?= message of "Mon, 24 Jan 2022 17:56:39 +0100") Message-ID: <87czkhqcma.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: 2125C123 X-Spamd-Result: default: False [-0.10 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[53506 <at> debbugs.gnu.org]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 53506 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.0 (/) Ludovic Court=C3=A8s <ludo@HIDDEN> skribis: > =E2=80=98guix-packages-base.drv=E2=80=99 fails to build due to a Guile se= gfault (!): > > [653/656] compiling... 99.1% of 328 files[654/656] compiling... 99.4% o= f 328 files[655/656] compiling... 99.7% of 328 filesGC Warning: Failed to = expand heap by 8388608 bytes > GC Warning: Failed to expand heap by 8388608 bytes > GC Warning: Failed to expand heap by 8388608 bytes > > [...] > > GC Warning: Failed to expand heap by 8388608 bytes > GC Warning: Failed to expand heap by 8388608 bytes > builder for `/gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-packages-ba= se.drv' failed due to signal 11 (Segmentation fault) > @ build-failed /gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-packages-= base.drv - 1 builder for `/gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-= packages-base.drv' failed due to signal 11 (Segmentation fault) On closer inspection, this is caused by OOM, with Guile peaking at 2.8G resident (!) at that point, more than on x86_64. I=E2=80=99m quite sure this is because the compiler resorts to bignums more= than on x86_64 (fixnums are smaller), thereby consuming more heap. Splitting creates-io.scm into two files might work as a temporary workaround since the compiler creates a number of labels (integers) roughly proportional to the number of lines in the file: --8<---------------cut here---------------start------------->8--- $ wc -l gnu/packages/*.scm|sort -k1 -n |tail 13977 gnu/packages/java.scm 15275 gnu/packages/bioconductor.scm 15929 gnu/packages/bioinformatics.scm 16086 gnu/packages/haskell-xyz.scm 20378 gnu/packages/lisp-xyz.scm 28770 gnu/packages/python-xyz.scm 29960 gnu/packages/emacs-xyz.scm 32071 gnu/packages/cran.scm 70442 gnu/packages/crates-io.scm 690662 totalo --8<---------------cut here---------------end--------------->8--- Background: https://lists.gnu.org/archive/html/guile-devel/2017-10/msg00035.html https://lists.gnu.org/archive/html/guile-devel/2020-02/msg00023.html https://wingolog.org/archives/2020/06/03/a-baseline-compiler-for-guile Ludo=E2=80=99.
bug-guix@HIDDEN
:bug#53506
; Package guix
.
Full text available.Ludovic Courtès <ludo@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Ludovic Courtès <ludo@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at submit) by debbugs.gnu.org; 24 Jan 2022 16:56:50 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Mon Jan 24 11:56:50 2022 Received: from localhost ([127.0.0.1]:45529 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1nC2eA-00036C-DU for submit <at> debbugs.gnu.org; Mon, 24 Jan 2022 11:56:50 -0500 Received: from lists.gnu.org ([209.51.188.17]:35486) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1nC2e8-000362-D4 for submit <at> debbugs.gnu.org; Mon, 24 Jan 2022 11:56:48 -0500 Received: from eggs.gnu.org ([209.51.188.92]:50604) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1nC2e8-0004qX-3O for bug-guix@HIDDEN; Mon, 24 Jan 2022 11:56:48 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:53330) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1nC2e6-0004dU-9z for bug-guix@HIDDEN; Mon, 24 Jan 2022 11:56:47 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 47937123 for <bug-guix@HIDDEN>; Mon, 24 Jan 2022 17:56:41 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e-XwpB1RNqaF for <bug-guix@HIDDEN>; Mon, 24 Jan 2022 17:56:40 +0100 (CET) Received: from ribbon (91-160-117-201.subs.proxad.net [91.160.117.201]) by hera.aquilenet.fr (Postfix) with ESMTPSA id BC02A8B for <bug-guix@HIDDEN>; Mon, 24 Jan 2022 17:56:39 +0100 (CET) From: =?utf-8?Q?Ludovic_Court=C3=A8s?= <ludo@HIDDEN> To: bug-guix@HIDDEN Subject: guix-packages-base.drv leads to segfault on i686-linux X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 5 =?utf-8?Q?Pluvi=C3=B4se?= an 230 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu Date: Mon, 24 Jan 2022 17:56:39 +0100 Message-ID: <87o841qdh4.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spamd-Bar: / Authentication-Results: hera.aquilenet.fr; none X-Rspamd-Server: hera X-Rspamd-Queue-Id: 47937123 X-Spamd-Result: default: False [-0.10 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[bug-guix@HIDDEN]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[]; TO_DOM_EQ_FROM_DOM(0.00)[] Received-SPF: softfail client-ip=185.233.100.1; envelope-from=ludo@HIDDEN; helo=hera.aquilenet.fr X-Spam_score_int: -11 X-Spam_score: -1.2 X-Spam_bar: - X-Spam_report: (-1.2 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_SOFTFAIL=0.665 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Hello, This command fails: guix pull -s i686-linux \ --commit=3D13b905bf28ec6309043bd61c5a92744b13352021 \ -p /tmp/test =E2=80=98guix-packages-base.drv=E2=80=99 fails to build due to a Guile segf= ault (!): --8<---------------cut here---------------start------------->8--- [653/656] compiling... 99.1% of 328 files[654/656] compiling... 99.4% of = 328 files[655/656] compiling... 99.7% of 328 filesGC Warning: Failed to ex= pand heap by 8388608 bytes GC Warning: Failed to expand heap by 8388608 bytes GC Warning: Failed to expand heap by 8388608 bytes [...] GC Warning: Failed to expand heap by 8388608 bytes GC Warning: Failed to expand heap by 8388608 bytes builder for `/gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-packages-base= .drv' failed due to signal 11 (Segmentation fault) @ build-failed /gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-packages-ba= se.drv - 1 builder for `/gnu/store/cnrmdbcyy8r9bs2gl2kgpnyplivrzf5c-guix-pa= ckages-base.drv' failed due to signal 11 (Segmentation fault) --8<---------------cut here---------------end--------------->8--- I wonder when it started failing, but it may have been pre-core-updates merge. Ricardo, do you have a known-good commit? <https://ci.guix.gnu.org/jobset/guix?border-high=3D53879> suggests it passes 25% of the time. Thanks, Ludo=E2=80=99.
Ludovic Courtès <ludo@HIDDEN>
:bug-guix@HIDDEN
.
Full text available.bug-guix@HIDDEN
:bug#53506
; Package guix
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.