From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id P/uYGK5PJV+sNgAA0tVLHw (envelope-from ) for ; Sat, 01 Aug 2020 11:19:10 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id 0HIIFK5PJV/dLwAAB5/wlQ (envelope-from ) for ; Sat, 01 Aug 2020 11:19:10 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id ADF469401AE for ; Sat, 1 Aug 2020 11:19:09 +0000 (UTC) Received: from localhost ([::1]:43778 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1k1pXg-0004Hu-BE for larch@yhetil.org; Sat, 01 Aug 2020 07:19:08 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47982) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k1pXa-0004Hm-NV for guix-patches@gnu.org; Sat, 01 Aug 2020 07:19:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55989) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1k1pXa-0008DI-EZ for guix-patches@gnu.org; Sat, 01 Aug 2020 07:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1k1pXa-0004Sf-7F for guix-patches@gnu.org; Sat, 01 Aug 2020 07:19:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#42576] [PATCH 1/2] gnu: llvm: Move dynamic libraries to a separate "lib" output. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sat, 01 Aug 2020 11:19:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42576 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Danny Milosavljevic Cc: Ludovic =?UTF-8?Q?Court=C3=A8s?= , 42576@debbugs.gnu.org Received: via spool by 42576-submit@debbugs.gnu.org id=B42576.159628069417086 (code B ref 42576); Sat, 01 Aug 2020 11:19:02 +0000 Received: (at 42576) by debbugs.gnu.org; 1 Aug 2020 11:18:14 +0000 Received: from localhost ([127.0.0.1]:39298 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k1pWn-0004RW-Mh for submit@debbugs.gnu.org; Sat, 01 Aug 2020 07:18:13 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:50385) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k1pWk-0004RI-PR for 42576@debbugs.gnu.org; Sat, 01 Aug 2020 07:18:12 -0400 X-Originating-IP: 86.246.37.13 Received: from bababa (lfbn-idf2-1-572-13.w86-246.abo.wanadoo.fr [86.246.37.13]) (Authenticated sender: mail@ambrevar.xyz) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 88A3C240005; Sat, 1 Aug 2020 11:18:04 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <20200801125953.2e898f63@scratchpost.org> References: <20200728095822.28375-1-mail@ambrevar.xyz> <20200801125953.2e898f63@scratchpost.org> Date: Sat, 01 Aug 2020 13:18:03 +0200 Message-ID: <878seyaa38.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.2 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-Spam-Score: -0.2 (/) X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+larch=yhetil.org@gnu.org Sender: "Guix-patches" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of guix-patches-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=guix-patches-bounces@gnu.org X-Spam-Score: -0.61 X-TUID: iWh6y38CkIGr --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi Danny! Danny Milosavljevic writes: > Hmm, glib for example moves the binaries to a "bin" output while retainin= g the > libraries in "out". > > Any reason this patch moves the libraries and not the binaries? Ludo suggested this way I think out of consistency with the rest. > Also, I would have thought that those llvm programs reference the llvm > libraries anyway, and thus in the end no space could be saved. Is this > not the case? This patch not about saving space for LLVM programs, but packages that depe= nd on LLVM libraries and which don't need the programs. Cheers! =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl8lT2sACgkQm9z0l6S7 zH/z7QgAl/Rsvlvwt/n1hXtdF1xGZnPbuuhYxMvfuIfpZp1Kpln/vaB98OuIgidf onowNIbi7AXHzkE1yRmE7Hjjiw80wlBeuv2kelSEFLnqkBos86rHRspEq4QIbYEz iqiJsGefHFXCXOK02teItfckypIZ0OjiMGjzbaVleVkhu/QlLrfgN4xXcQ1SHfEB Xs/BGb1fmB5MLdWcCG8yWg8w8+dWFeVvQ6eqgHPb/51G0qZPoSLAJ759pbN5beWS L4NyH4Xvfyje+SD6WRsrgpAGYngYU7EhXLq9yBbmWPTYkpGWsNkSu0HK3YWwaMna t2nZoE0583xBFinDs4t6ONW3U3yOUg== =/bjc -----END PGP SIGNATURE----- --=-=-=--