From patchwork Thu Aug 14 17:41:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 379972 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 4CF02140097 for ; Fri, 15 Aug 2014 03:42:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 953CC8BB2C; Thu, 14 Aug 2014 17:41:57 +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 Xlsas622o4ox; Thu, 14 Aug 2014 17:41:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id F12BA8BA73; Thu, 14 Aug 2014 17:41:55 +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 F3FCA1C0F79 for ; Thu, 14 Aug 2014 17:41:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EF7808BA73 for ; Thu, 14 Aug 2014 17:41:54 +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 w7vN1wShi-zg for ; Thu, 14 Aug 2014 17:41:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id 592588BA29 for ; Thu, 14 Aug 2014 17:41:54 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 8D6678D8; Thu, 14 Aug 2014 19:41:53 +0200 (CEST) Received: from localhost (54.103.69.91.rev.sfr.net [91.69.103.54]) by mail.free-electrons.com (Postfix) with ESMTPSA id 338FF81C; Thu, 14 Aug 2014 19:41:53 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 14 Aug 2014 19:41:44 +0200 Message-Id: <1408038104-9440-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.0.0 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] ltrace: disable on mips/mipsel 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 ltrace currently doesn't build on mips/mipsel, and it's an upstream issue that has been reported. Until it get fixed, let's disable ltrace for mips/mipsel. Fixes: http://autobuild.buildroot.org/results/43a/43a8fc7075f52eab74ebfee4c9f25dd2b886e75e/ Cc: Vicente Olivert Riera Signed-off-by: Thomas Petazzoni --- package/ltrace/Config.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in index 4d1acfa..8cabfa2 100644 --- a/package/ltrace/Config.in +++ b/package/ltrace/Config.in @@ -1,6 +1,10 @@ config BR2_PACKAGE_LTRACE bool "ltrace" - depends on (BR2_i386 || BR2_arm || BR2_mips || BR2_mipsel \ + # ltrace normally has mips/mipsel support, but it's currently + # broken (error: 'struct ltelf' has no member named + # 'relplt_count'). Issue reported upstream at + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756764. + depends on (BR2_i386 || BR2_arm \ || BR2_powerpc || BR2_sparc || BR2_x86_64) select BR2_PACKAGE_LIBELF select BR2_PACKAGE_ELFUTILS