From patchwork Sun Jan 6 15:22:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 209773 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 BA1562C0040 for ; Mon, 7 Jan 2013 02:25:16 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B8E2D30F17; Sun, 6 Jan 2013 15:25:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XzoY+PFrgur6; Sun, 6 Jan 2013 15:25:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4AAB530F00; Sun, 6 Jan 2013 15:24:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 760688F753 for ; Sun, 6 Jan 2013 15:23:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 67529A0181 for ; Sun, 6 Jan 2013 15:23:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UCnx3MPtd02M for ; Sun, 6 Jan 2013 15:23:42 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.32.191]) by hemlock.osuosl.org (Postfix) with ESMTP id DF4E3A017F for ; Sun, 6 Jan 2013 15:23:41 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 9E71210F; Sun, 6 Jan 2013 16:23:40 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 3871F10F for ; Sun, 6 Jan 2013 16:23:39 +0100 (CET) From: Thomas Petazzoni To: buildroot@busybox.net Date: Sun, 6 Jan 2013 16:22:55 +0100 Message-Id: <3e9f9e1a1d4de1c948dcf64dffd1a9e6e653d7bd.1357485747.git.thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 15/15] elfutils: make available on uClibc toolchains 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 We finally have all the pieces needed to allow the build of elfutils on uClibc. Only the libraries can be built, the programs remain available only for glibc/eglibc toolchains. Signed-off-by: Thomas Petazzoni --- package/elfutils/Config.in | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/package/elfutils/Config.in b/package/elfutils/Config.in index 78d02a5..b107a97 100644 --- a/package/elfutils/Config.in +++ b/package/elfutils/Config.in @@ -1,13 +1,5 @@ -comment "elfutils requires a glibc toolchain" - depends on !(BR2_TOOLCHAIN_EXTERNAL_GLIBC || \ - BR2_TOOLCHAIN_CTNG_glibc || \ - BR2_TOOLCHAIN_CTNG_eglibc) - config BR2_PACKAGE_ELFUTILS bool "elfutils" - depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || \ - BR2_TOOLCHAIN_CTNG_glibc || \ - BR2_TOOLCHAIN_CTNG_eglibc select BR2_PACKAGE_ARGP_STANDALONE if \ BR2_TOOLCHAIN_BUILDROOT || \ BR2_TOOLCHAIN_CTNG_uClibc || \ @@ -27,6 +19,9 @@ if BR2_PACKAGE_ELFUTILS config BR2_PACKAGE_ELFUTILS_PROGS bool "Install programs" + depends on BR2_TOOLCHAIN_EXTERNAL_GLIBC || \ + BR2_TOOLCHAIN_CTNG_glibc || \ + BR2_TOOLCHAIN_CTNG_eglibc help This option tells elfutils to not only install the libelf libraries, but also the elfutils programs.