From patchwork Tue May 6 10:42:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 346126 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 241B8141331 for ; Tue, 6 May 2014 20:43:04 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 32905329AA; Tue, 6 May 2014 10:43:03 +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 f3Y6o5rnnjm9; Tue, 6 May 2014 10:43:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id B9D56321EB; Tue, 6 May 2014 10:43:00 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BDCD31BF9A7 for ; Tue, 6 May 2014 10:42:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B7F568BCF0 for ; Tue, 6 May 2014 10:42:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0p6RkZKXzVhX for ; Tue, 6 May 2014 10:42:58 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 43D288BDA0 for ; Tue, 6 May 2014 10:42:57 +0000 (UTC) Received: from asgard (host14.181-1-250.telecom.net.ar [181.1.250.14]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.8/8.14.8) with ESMTP id s46AgoWa027847 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 6 May 2014 10:42:53 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1399372975; bh=FvkZYv+SINgFYXkZpAwui37J8eQO+KpFpEju+FweEMM=; h=From:To:Cc:Subject:Date; b=l+Hbj2/OAdsICDDwMi20nuyUjbdCNfpJNBEUsX/s4VqGsVSQKCG3an11+EQncp8Zy /mFwWvfkYM70B4u4AYrawJAokSekYGakM58ZsNcm9Z+gWvmQMY1BbJUFnlmHMcXlgz wj3neeW2UPnt4E2O/kOWL6imuDNoxDgpIGpFn7YA= Received: by asgard (sSMTP sendmail emulation); Tue, 06 May 2014 07:42:44 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 6 May 2014 07:42:44 -0300 Message-Id: <1399372964-7973-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.5.5 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] toolchain/buildroot: default to uClibc X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Otherwise we're getting musl for everything except those who have a default (mips64*). Signed-off-by: Gustavo Zacarias --- toolchain/toolchain-buildroot/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in index 1bd3f92..216f9db 100644 --- a/toolchain/toolchain-buildroot/Config.in +++ b/toolchain/toolchain-buildroot/Config.in @@ -22,6 +22,7 @@ source "package/linux-headers/Config.in.host" choice prompt "C library" + default BR2_TOOLCHAIN_UCLIBC default BR2_TOOLCHAIN_BUILDROOT_EGLIBC if BR2_mips64 || BR2_mips64el config BR2_TOOLCHAIN_BUILDROOT_UCLIBC