From patchwork Sat Aug 6 22:11:14 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 656419 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3s6Hvg4HrXz9sdm for ; Sun, 7 Aug 2016 08:11:43 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 983A72CAAE; Sat, 6 Aug 2016 22:11:38 +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 Uwm9vuK5duMv; Sat, 6 Aug 2016 22:11:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id DC5042D39B; Sat, 6 Aug 2016 22:11:33 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 13B541C1032 for ; Sat, 6 Aug 2016 22:11:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1052A86C8E for ; Sat, 6 Aug 2016 22:11:30 +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 35Svt6E0F0mK for ; Sat, 6 Aug 2016 22:11:29 +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 fraxinus.osuosl.org (Postfix) with ESMTP id 8BEC386B26 for ; Sat, 6 Aug 2016 22:11:29 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 110) id AD0CB351; Sun, 7 Aug 2016 00:11:28 +0200 (CEST) Received: from localhost (132.230.147.77.rev.sfr.net [77.147.230.132]) by mail.free-electrons.com (Postfix) with ESMTPSA id 3B51B2E5; Sun, 7 Aug 2016 00:11:18 +0200 (CEST) From: Thomas Petazzoni To: buildroot@buildroot.org Date: Sun, 7 Aug 2016 00:11:14 +0200 Message-Id: <1470521474-16710-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1470521474-16710-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1470521474-16710-1-git-send-email-thomas.petazzoni@free-electrons.com> Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH 2/2] blktrace: disable on PowerPC 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" This package has been failing to build on PowerPC since March 2016, with nobody taking care of the problem, so let's disable this package on PowerPC for the time being. PowerPC is the only architecture on which blktrace fails to build currently. Fixes: http://autobuild.buildroot.net/results/5a673c692aeb957cd8beb2c2c10ce5fd882ba4b5/ Signed-off-by: Thomas Petazzoni Reviewed-by: "Yann E. MORIN" --- package/blktrace/Config.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package/blktrace/Config.in b/package/blktrace/Config.in index c17de80..1b8212d 100644 --- a/package/blktrace/Config.in +++ b/package/blktrace/Config.in @@ -3,6 +3,8 @@ config BR2_PACKAGE_BLKTRACE # Uses posix_spawn() depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL depends on BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS + # issue: hidden symbol `_rest32gpr_30_x` is referenced by DSO + depends on !BR2_powerpc select BR2_PACKAGE_LIBAIO help blktrace is a block layer IO tracing mechanism which provides @@ -13,4 +15,5 @@ config BR2_PACKAGE_BLKTRACE comment "blktrace needs a glibc or musl toolchain" depends on BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS + depends on !BR2_powerpc depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)