From patchwork Wed Nov 28 14:36:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 202463 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 D74582C008E for ; Thu, 29 Nov 2012 01:36:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id DDB5731049; Wed, 28 Nov 2012 14:36:23 +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 RxsiXe9MyG-k; Wed, 28 Nov 2012 14:36:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id CB44B31036; Wed, 28 Nov 2012 14:36:22 +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 5B9908F74A for ; Wed, 28 Nov 2012 14:36:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 2A5E4100A43 for ; Wed, 28 Nov 2012 14:36:14 +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 yubbnOUp74cF for ; Wed, 28 Nov 2012 14:36:12 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp.enix.org (smtp.enix.org [193.19.211.146]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 74ABD10147E for ; Wed, 28 Nov 2012 14:36:12 +0000 (UTC) Received: from [82.247.183.72] (helo=localhost) by smtp.enix.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1TdikJ-0006Vc-Qp for buildroot@uclibc.org; Wed, 28 Nov 2012 15:36:16 +0100 From: Thomas Petazzoni To: buildroot@uclibc.org Date: Wed, 28 Nov 2012 15:36:14 +0100 Message-Id: <1354113374-15476-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] binutils: not available for the target on AArch64 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 Fixes: http://autobuild.buildroot.org/results/74082860f607cbd857654e9504f5f7e7ae47c0ac/build-end.log Signed-off-by: Thomas Petazzoni --- package/binutils/Config.in | 1 + package/oprofile/Config.in | 1 + 2 files changed, 2 insertions(+) diff --git a/package/binutils/Config.in b/package/binutils/Config.in index 6480370..38d519a 100644 --- a/package/binutils/Config.in +++ b/package/binutils/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_BINUTILS bool "binutils" select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + depends on !BR2_aarch64 help Install binutils on the target diff --git a/package/oprofile/Config.in b/package/oprofile/Config.in index 562c910..8c881d1 100644 --- a/package/oprofile/Config.in +++ b/package/oprofile/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_OPROFILE select BR2_PACKAGE_POPT select BR2_PACKAGE_BINUTILS depends on BR2_INSTALL_LIBSTDCPP + depends on !BR2_aarch64 # binutils help OProfile is a system-wide profiler for Linux systems, capable of profiling all running code at low overhead.