From patchwork Mon Aug 18 22:03:27 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Brodkin X-Patchwork-Id: 381144 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 84F3D14009B for ; Tue, 19 Aug 2014 08:03:47 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id BCDE32F472; Mon, 18 Aug 2014 22:03:46 +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 ZEHq+9-0e0Sr; Mon, 18 Aug 2014 22:03:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id A6D9030826; Mon, 18 Aug 2014 22:03:42 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 671721BFA6A for ; Mon, 18 Aug 2014 22:03:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 614518AF9A for ; Mon, 18 Aug 2014 22:03:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id x08d5zfav8de for ; Mon, 18 Aug 2014 22:03:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from smtprelay.synopsys.com (smtprelay.synopsys.com [198.182.60.111]) by fraxinus.osuosl.org (Postfix) with ESMTPS id A38CE89D28 for ; Mon, 18 Aug 2014 22:03:40 +0000 (UTC) Received: from us01secmta1.synopsys.com (us01secmta1.synopsys.com [10.9.203.100]) by smtprelay.synopsys.com (Postfix) with ESMTP id 1236010C0463; Mon, 18 Aug 2014 15:03:40 -0700 (PDT) Received: from us01secmta1.internal.synopsys.com (us01secmta1.internal.synopsys.com [127.0.0.1]) by us01secmta1.internal.synopsys.com (Service) with ESMTP id 058ED27113; Mon, 18 Aug 2014 15:03:40 -0700 (PDT) Received: from mailhost.synopsys.com (mailhost1.synopsys.com [10.12.238.239]) by us01secmta1.internal.synopsys.com (Service) with ESMTP id D928127102; Mon, 18 Aug 2014 15:03:39 -0700 (PDT) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id CBE5F232; Mon, 18 Aug 2014 15:03:39 -0700 (PDT) Received: from abrodkin-8560l.internal.synopsys.com (unknown [10.225.15.76]) by mailhost.synopsys.com (Postfix) with ESMTP id 7F3C622E; Mon, 18 Aug 2014 15:03:38 -0700 (PDT) From: Alexey Brodkin To: buildroot@buildroot.org Date: Tue, 19 Aug 2014 02:03:27 +0400 Message-Id: <1408399407-23604-3-git-send-email-abrodkin@synopsys.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1408399407-23604-1-git-send-email-abrodkin@synopsys.com> References: <1408399407-23604-1-git-send-email-abrodkin@synopsys.com> Cc: Thomas Petazzoni , Alexey Brodkin Subject: [Buildroot] [PATCH 2/2] packages: add WCHAR dependency for packages that select native binutils 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 Native binutils require uClibc with WCHAR. Otherwise build stops with error - https://bugs.busybox.net/show_bug.cgi?id=6218 Signed-off-by: Alexey Brodkin Cc: Anton Kolesov Cc: Thomas Petazzoni --- package/dropwatch/Config.in | 1 + package/oprofile/Config.in | 1 + 2 files changed, 2 insertions(+) diff --git a/package/dropwatch/Config.in b/package/dropwatch/Config.in index 0c9aca6..a19b29f 100644 --- a/package/dropwatch/Config.in +++ b/package/dropwatch/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_DROPWATCH select BR2_PACKAGE_READLINE select BR2_PACKAGE_LIBNL depends on BR2_TOOLCHAIN_HAS_THREADS # libnl + depends on BR2_USE_WCHAR # native binutils require WCHAR help Dropwatch is an interactive utility for monitoring and recording packets that are dropped by the kernel diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in index 075e9ea..4dca560 100644 --- a/package/oprofile/Config.in +++ b/package/oprofile/Config.in @@ -9,6 +9,7 @@ config BR2_PACKAGE_OPROFILE depends on !BR2_xtensa # libpfm4 is needed on PowerPC, and requires thread support depends on BR2_TOOLCHAIN_HAS_THREADS || !BR2_powerpc + depends on BR2_USE_WCHAR # native binutils require WCHAR help OProfile is a system-wide profiler for Linux systems, capable of profiling all running code at low overhead.