From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55719) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iRkkZ-0006u9-86 for guix-patches@gnu.org; Mon, 04 Nov 2019 17:23:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iRkkY-0001OA-9C for guix-patches@gnu.org; Mon, 04 Nov 2019 17:23:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:57084) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iRkkY-0001Nt-5z for guix-patches@gnu.org; Mon, 04 Nov 2019 17:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iRkkX-0006wo-Vq for guix-patches@gnu.org; Mon, 04 Nov 2019 17:23:02 -0500 Subject: [bug#37924] [PATCH 2/2] ci: Add 'make-gcc-toolchain' packages Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: Date: Mon, 04 Nov 2019 23:22:04 +0100 In-Reply-To: (Carl Dong's message of "Fri, 25 Oct 2019 16:21:40 +0000") Message-ID: <87sgn34703.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Carl Dong Cc: "37924@debbugs.gnu.org" <37924@debbugs.gnu.org> Hi, Carl Dong skribis: > * gnu/ci.scm (%core-packages): Add 'glibc-2.28', a toolchain with > default 'gcc', and a toolchain targeting 'glibc-2.28'. The problem is =E2=80=98%core-packages=E2=80=99 is only built when we expli= citly choose the =E2=80=9Ccore=E2=80=9D subset in CI (which we do only when experimentin= g with =E2=80=98core-updates=E2=80=99 early on); in other cases, all the public pa= ckages get built and =E2=80=98%core-packages=E2=80=99 does not matter. Would it be an option to have: (define-public gcc/glibc-2.28 (make-gcc-libc gcc glibc-2.28)) in (gnu packages base), or does that create circular dependency issues (I don=E2=80=99t think so, but better be safe)? If we did that, that package would automatically picked up in CI. Thanks, Ludo=E2=80=99.