From patchwork Fri Feb 28 17:58:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Giulio Benetti X-Patchwork-Id: 1246772 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=benettiengineering.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=aruba.it header.i=@aruba.it header.a=rsa-sha256 header.s=a1 header.b=bxEY9hrI; dkim-atps=neutral Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48Tcs82gYBz9sRL for ; Sat, 29 Feb 2020 05:05:32 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id AA37486EEA; Fri, 28 Feb 2020 18:05: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 JlOZxsU9XCRJ; Fri, 28 Feb 2020 18:05:30 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E91F786EC7; Fri, 28 Feb 2020 18:05:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7771C1BF9BA for ; Fri, 28 Feb 2020 18:05:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7283B875B9 for ; Fri, 28 Feb 2020 18:05:27 +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 hbTsIUmeKM7E for ; Fri, 28 Feb 2020 18:05:25 +0000 (UTC) X-Greylist: delayed 00:07:06 by SQLgrey-1.7.6 Received: from smtpcmd0756.aruba.it (smtpcmd0756.aruba.it [62.149.156.56]) by whitealder.osuosl.org (Postfix) with ESMTP id 45DD986B3C for ; Fri, 28 Feb 2020 18:05:25 +0000 (UTC) Received: from ubuntu.localdomain ([212.103.203.10]) by smtpcmd07.ad.aruba.it with bizsmtp id 8HyF2200F0DySFo01HyFKi; Fri, 28 Feb 2020 18:58:17 +0100 From: Giulio Benetti To: buildroot@buildroot.org Date: Fri, 28 Feb 2020 18:58:13 +0100 Message-Id: <20200228175814.128730-1-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aruba.it; s=a1; t=1582912697; bh=IjOQ6e8zoe9t5NpONs80XtUD8m9jjmJluP1FAzI9zG8=; h=From:To:Subject:Date:MIME-Version; b=bxEY9hrIvKYvDsoGDKFdBCcWmCY82X3D+98vGNWlz/0zAkf0q5SNGkrbD59UdI3zk iF77Zjmlsmre2yaM+pKq7Ik2O8wP00oCJn/lGeOjpJe3VR0EDAKLUspgCM0fjfgzR6 5zW3ZjNJpaUgafbqvS7W6k31IYl0/hVQM6jJsXM6lw6FWxTqrWUoUpnpjQVWdvu5dR 6zB2icfxqqjWRtZZLbxX7r3ooyk6NX3SSNRReF8CA8Lmf4ZmYEMJ3LmS78Vjo2hK3k BOAP0szSdPKMVCKLmKZQ6xE1EBXP47ZL1wkrf7DQZe3SID211csSaiht+icX/Ybh1A NsBFGvtxUdZtw== Subject: [Buildroot] [PATCH 1/2] toolchain: introduce BR2_TOOLCHAIN_HAS_BINUTILS_BUG_21464 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Matt Weber , Giulio Benetti , Romain Naour , Thomas De Schampheleire , Thomas Petazzoni Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" On OpenRisc binutils it still present ld bug 21464 leading to a package protobuf to fail building: http://autobuild.buildroot.net/results/908/9084cd777aefe0fa8235514c33767d8640ad7a5b/ The bug was already reported and it's been updated: https://sourceware.org/bugzilla/show_bug.cgi?id=21464 Signed-off-by: Giulio Benetti --- toolchain/Config.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/toolchain/Config.in b/toolchain/Config.in index 87509f3d64..d71bb2a65a 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -81,6 +81,12 @@ config BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19615 config BR2_TOOLCHAIN_HAS_BINUTILS_BUG_20006 bool +# https://sourceware.org/bugzilla/show_bug.cgi?id=21464 +# Affect toolchains built with binutils 2.31.1, still not fixed. +config BR2_TOOLCHAIN_HAS_BINUTILS_BUG_21464 + bool + default y if BR2_or1k + # Atomic types can be: # - never lock-free # - sometimes lock-free