From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: bug#39941: Disk-image size increase on core-updates. Date: Wed, 11 Mar 2020 15:45:24 +0100 Message-ID: <87zhcnympn.fsf@gmail.com> References: <87sgimdjcj.fsf@gmail.com> <87eeu0h8d6.fsf@gmail.com> <87a74nhstf.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:49020) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jC2cW-0006W0-Eg for bug-guix@gnu.org; Wed, 11 Mar 2020 10:46:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jC2cV-0000sm-FG for bug-guix@gnu.org; Wed, 11 Mar 2020 10:46:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49357) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jC2cV-0000sg-C2 for bug-guix@gnu.org; Wed, 11 Mar 2020 10:46:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jC2cU-0000Tf-9J for bug-guix@gnu.org; Wed, 11 Mar 2020 10:46:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <87a74nhstf.fsf@gnu.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 39941@debbugs.gnu.org Hey, > Could you find out (perhaps by looking at =E2=80=98guix graph -t referenc= es=E2=80=99) > what is referencing these two cross-compilers? Turns out on master, --8<---------------cut here---------------start------------->8--- guix size `guix build guile|grep -v debug` --8<---------------cut here---------------end--------------->8--- returns ~124 MiB, while, --8<---------------cut here---------------start------------->8--- guix size `guix build --target=3Daarch64-linux-gnu guile|grep -v debug` --8<---------------cut here---------------end--------------->8--- returns ~523 MiB. When building the native guile, only the "lib" output of gcc is kept. When cross-compiling, the whole cross-compiler is dragged down (as there's only "out" defined for cross-gcc). That does not explain the sudden increase, but this is still quite unfortunate :p Thanks, Mathieu