From patchwork Sun Apr 16 11:41:35 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 751131 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3w5TyF5ZZZz9s2s for ; Sun, 16 Apr 2017 21:41:56 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8B35989913; Sun, 16 Apr 2017 11:41:52 +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 I7HAdoGUJeeq; Sun, 16 Apr 2017 11:41:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0D87E898C6; Sun, 16 Apr 2017 11:41:50 +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 521761C0F94 for ; Sun, 16 Apr 2017 11:41:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4D6C287A70 for ; Sun, 16 Apr 2017 11:41:49 +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 pPeeEyO2ByIV for ; Sun, 16 Apr 2017 11:41:47 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 47DAC87A69 for ; Sun, 16 Apr 2017 11:41:47 +0000 (UTC) Received: from fwd09.aul.t-online.de (fwd09.aul.t-online.de [172.20.27.151]) by mailout03.t-online.de (Postfix) with SMTP id 53A26420441A for ; Sun, 16 Apr 2017 13:41:44 +0200 (CEST) Received: from fli4l.lan.fli4l (Zeeef8ZY8h4-oENmGoxFjQ+KNSgHfs1fOFzcI0tWxvTC7NyuXXrwb4HzyOw96QnZp+@[79.228.23.181]) by fwd09.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1cziYi-1SeMcK0; Sun, 16 Apr 2017 13:41:36 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:51246 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1cziYh-00027d-LY for buildroot@buildroot.org; Sun, 16 Apr 2017 13:41:35 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 16 Apr 2017 13:41:35 +0200 Message-Id: <20170416114135.5080-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: Zeeef8ZY8h4-oENmGoxFjQ+KNSgHfs1fOFzcI0tWxvTC7NyuXXrwb4HzyOw96QnZp+ X-TOI-MSGID: 3331533e-3f7b-441c-be69-bda11229130f Subject: [Buildroot] [PATCH 1/1] package/ffmpeg: depends on BR2_TOOLCHAIN_HAS_SYNC_4 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" Fixes http://autobuild.buildroot.net/results/5a2/5a2a7f24c8727f7f3aee2ca72b4472f261610c27/ Signed-off-by: Bernd Kuhls --- package/ffmpeg/Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in index b5850db72..42a357446 100644 --- a/package/ffmpeg/Config.in +++ b/package/ffmpeg/Config.in @@ -3,7 +3,8 @@ config BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 # No support for ARMv7-M in the ARM assembly logic # Microblaze build affected by gcc PR71124 (infinite loop) - default y if !BR2_nios2 && !BR2_ARM_CPU_ARMV7M && !BR2_microblaze + default y if !BR2_nios2 && !BR2_ARM_CPU_ARMV7M && \ + !BR2_microblaze && BR2_TOOLCHAIN_HAS_SYNC_4 menuconfig BR2_PACKAGE_FFMPEG bool "ffmpeg"