From patchwork Mon Oct 10 08:07:20 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?5ZGo5pmT5YuH?= X-Patchwork-Id: 940 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.66 with SMTP id o63csp2253932vsd; Mon, 10 Oct 2016 01:08:20 -0700 (PDT) X-Received: by 10.194.68.106 with SMTP id v10mr29185356wjt.149.1476086900871; Mon, 10 Oct 2016 01:08:20 -0700 (PDT) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id kb8si13805283wjb.260.2016.10.10.01.08.20; Mon, 10 Oct 2016 01:08:20 -0700 (PDT) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@126.com; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org; dmarc=fail (p=NONE dis=NONE) header.from=126.com Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 76E15689B38; Mon, 10 Oct 2016 11:08:01 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from m15-56.126.com (unknown [220.181.15.56]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id DA1C7689B28 for ; Mon, 10 Oct 2016 11:07:50 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=126.com; s=s110527; h=Date:From:Subject:MIME-Version:Message-ID; bh=aGm1S YdbAaF5EB48oMJLoEOFZh95ln6BpQ/bcWW7keg=; b=Wjc5Mm3NOax2jXtM47pzs uabtJrfu4bkhH2SKmZJNg1sPK8m7P3WQ26neNaSu7UesDyRPClQjuwDGfe1aL2d+ ia50/LtPu3jEbOGzrB5pZyHwtB0emwBmNHaO1GTOx/7vwEum/Hnb3CIG7nvuEHvv jaujPJPSYVHwL5Y979PZl8= Received: from ipfootball$126.com ( [114.242.206.180] ) by ajax-webmail-wmsvr56 (Coremail) ; Mon, 10 Oct 2016 16:07:20 +0800 (CST) X-Originating-IP: [114.242.206.180] Date: Mon, 10 Oct 2016 16:07:20 +0800 (CST) From: =?GBK?B?1tzP/tPC?= To: ffmpeg-devel@ffmpeg.org X-Priority: 3 X-Mailer: Coremail Webmail Server Version SP_ntes V3.5 build 20160729(86883.8884) Copyright (c) 2002-2016 www.mailtech.cn 126com MIME-Version: 1.0 Message-ID: <1f04a2d6.8d51.157ada1bb6b.Coremail.ipfootball@126.com> X-Coremail-Locale: zh_CN X-CM-TRANSID: OMqowACHl_85TPtXnchMAA--.4206W X-CM-SenderInfo: 5lsi00hwedzza6rslhhfrp/1tbiHQH+E1Uw4QjkhAABsc X-Coremail-Antispam: 1U5529EdanIXcx71UUUUU7vcSsGvfC2KfnxnUU== X-Content-Filtered-By: Mailman/MimeDel 2.1.20 Subject: [FFmpeg-devel] [PATCH 1/7] configure: loongson disable mipsfpu and mipsdsp optimizations X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: "michael@niedermayer.cc" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" From efccaec2b5b543eb98f0400fdaef88d9147d08c1 Mon Sep 17 00:00:00 2001 From: Zhou Xiaoyong Date: Mon, 10 Oct 2016 14:19:58 +0800 Subject: [PATCH 1/7] configure: loongson disable mipsfpu and mipsdsp optimizations --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index e014615..8fc71fb 100755 --- a/configure +++ b/configure @@ -4380,6 +4380,9 @@ elif enabled mips; then enable fast_cmov enable fast_unaligned disable aligned_stack + disable mipsfpu + disable mipsdsp + disable mipsdspr2 case $cpu in loongson3*) cpuflags="-march=loongson3a -mhard-float -fno-expensive-optimizations"