From patchwork Tue May 17 07:17:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 622890 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3r87vS1Xp8z9snl for ; Tue, 17 May 2016 17:17:40 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C2FD196513; Tue, 17 May 2016 07:17:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bFjFYnI+nOSQ; Tue, 17 May 2016 07:17:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 45E1D9631F; Tue, 17 May 2016 07:17:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 49A011C200E for ; Tue, 17 May 2016 07:17:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 454BD31404 for ; Tue, 17 May 2016 07:17:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vZVc6cqU3BEv for ; Tue, 17 May 2016 07:17:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by silver.osuosl.org (Postfix) with ESMTP id 2CB942E85B for ; Tue, 17 May 2016 07:17:36 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 110) id 64D4325F; Tue, 17 May 2016 09:17:34 +0200 (CEST) Received: from localhost (LStLambert-657-1-97-87.w90-63.abo.wanadoo.fr [90.63.216.87]) by mail.free-electrons.com (Postfix) with ESMTPSA id 33D841C8; Tue, 17 May 2016 09:17:34 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Tue, 17 May 2016 09:17:31 +0200 Message-Id: <1463469451-18931-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.7.4 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] Config.in.legacy: fallback to glibc when eglibc was selected X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" As suggested by Peter Korsgaard, now that the eglibc support has been removed, it is useful to automatically make the user's configuration fall back to glibc (instead of uClibc, which would be the default C library). Signed-off-by: Thomas Petazzoni --- Config.in.legacy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Config.in.legacy b/Config.in.legacy index a0a2059..461af69 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -155,11 +155,14 @@ config BR2_BINUTILS_VERSION_2_23_X config BR2_TOOLCHAIN_BUILDROOT_EGLIBC bool "eglibc support has been removed" select BR2_LEGACY + select BR2_TOOLCHAIN_BUILDROOT_GLIBC help The eglibc project no longer exists, as it has been merged back into the glibc project. Therefore, support for eglibc has been removed, and glibc should be used instead. + glibc has been automatically selected as a fallback. + config BR2_GDB_VERSION_7_8 bool "gdb 7.8 has been removed" select BR2_LEGACY