From patchwork Sat May 13 15:09:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 762043 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 3wQ9J64RNgz9s84 for ; Sun, 14 May 2017 01:10:14 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B813C896E0; Sat, 13 May 2017 15:10:11 +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 Es2hmveppuK0; Sat, 13 May 2017 15:10:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 95814896D5; Sat, 13 May 2017 15:10:07 +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 DE0FC1C04AB for ; Sat, 13 May 2017 15:10:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D96AE871FC for ; Sat, 13 May 2017 15:10:03 +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 5bEIPMNHu3VC for ; Sat, 13 May 2017 15:10:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 1A597870B6 for ; Sat, 13 May 2017 15:10:03 +0000 (UTC) Received: from fwd31.aul.t-online.de (fwd31.aul.t-online.de [172.20.26.136]) by mailout06.t-online.de (Postfix) with SMTP id 1407241CF1A3 for ; Sat, 13 May 2017 17:10:01 +0200 (CEST) Received: from fli4l.lan.fli4l (TtkaKEZLZh8M+eyZWSy8XZqPRQASYbyf44qcOzQXXC4OzsnFngoRIK8GRg6FD3QgjI@[79.222.101.2]) by fwd31.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1d9Yg4-2JxvX60; Sat, 13 May 2017 17:09:52 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:46950 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1d9Yg4-000183-31 for buildroot@buildroot.org; Sat, 13 May 2017 17:09:52 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 13 May 2017 17:09:17 +0200 Message-Id: <20170513150918.25427-2-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170513150918.25427-1-bernd.kuhls@t-online.de> References: <20170513150918.25427-1-bernd.kuhls@t-online.de> X-ID: TtkaKEZLZh8M+eyZWSy8XZqPRQASYbyf44qcOzQXXC4OzsnFngoRIK8GRg6FD3QgjI X-TOI-MSGID: 4bb3de99-ed4f-4e47-bb8e-5580da9c5062 Subject: [Buildroot] [PATCH 2/3] package/mplayer: disable inline sse2 on i386 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 subsequent sse2-related build error libavcodec/x86/cavsdsp.c: In function 'ff_cavsdsp_init_x86': libavcodec/x86/cavsdsp.c:589:45: error: 'put_cavs_qpel16_mc00_sse2' undeclared (first use in this function) libavcodec/x86/cavsdsp.c:589:45: note: each undeclared identifier is reported only once for each function it appears in libavcodec/x86/cavsdsp.c:590:45: error: 'avg_cavs_qpel16_mc00_sse2' undeclared (first use in this function) common.mak:60: recipe for target 'libavcodec/x86/cavsdsp.o' failed after disabling inline sse by the previous patch. Found while fixing autobuilder http://autobuild.buildroot.net/results/9f5/9f5a497c6242860fb67a5aa2996c3509f49a4564/ Signed-off-by: Bernd Kuhls --- package/mplayer/mplayer.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/mplayer/mplayer.mk b/package/mplayer/mplayer.mk index 0d3ba0b81..59e37d828 100644 --- a/package/mplayer/mplayer.mk +++ b/package/mplayer/mplayer.mk @@ -296,6 +296,10 @@ define MPLAYER_DISABLE_INLINE_ASM $(@D)/config.h $(SED) 's,#define HAVE_SSE_EXTERNAL 1,#define HAVE_SSE_EXTERNAL 0,g' \ $(@D)/config.h + $(SED) 's,#define HAVE_SSE2_INLINE 1,#define HAVE_SSE2_INLINE 0,g' \ + $(@D)/config.h + $(SED) 's,#define HAVE_SSE2_EXTERNAL 1,#define HAVE_SSE2_EXTERNAL 0,g' \ + $(@D)/config.h endef ifeq ($(BR2_i386),y)