From owner-svn-ports-head@freebsd.org Thu Nov 30 08:14:31 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A54E6DFC707; Thu, 30 Nov 2017 08:14:31 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 829E47AC89; Thu, 30 Nov 2017 08:14:31 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id A870538E6; Thu, 30 Nov 2017 08:14:30 +0000 (UTC) From: Jan Beich To: Michal Meloun Cc: Mark Linimon , mmel@freebsd.org, svn-ports-head@freebsd.org, arm@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r455173 - in head: multimedia/ffmpeg multimedia/libass net/asterisk13 net/freerdp x11/rxvt-unicode References: <201711300702.vAU72oII050996@repo.freebsd.org> Date: Thu, 30 Nov 2017 09:14:27 +0100 In-Reply-To: (Michal Meloun's message of "Thu, 30 Nov 2017 08:56:05 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Nov 2017 08:14:31 -0000 Michal Meloun writes: > On 30.11.2017 8:35, Jan Beich wrote: >> Mark Linimon writes: >> >>> Author: linimon >>> Date: Thu Nov 30 07:02:49 2017 >>> New Revision: 455173 >>> URL: https://svnweb.freebsd.org/changeset/ports/455173 >>> >>> Log: >>> For ports that set particular flags/options for armv6, also set them >>> for armv7. >> [...] >>> Modified: head/multimedia/ffmpeg/Makefile >>> ============================================================================== >>> --- head/multimedia/ffmpeg/Makefile Thu Nov 30 07:01:14 2017 (r455172) >>> +++ head/multimedia/ffmpeg/Makefile Thu Nov 30 07:02:49 2017 (r455173) >>> @@ -54,6 +54,7 @@ OPTIONS_GROUP_LICENSE= GPL3 NONFREE >>> >>> OPTIONS_DEFINE_amd64= MMX SSE >>> OPTIONS_DEFINE_armv6= VFP NEON >>> +OPTIONS_DEFINE_armv7= VFP NEON >> >> Are you sure about disabling VFP and NEON by default? If so bump PORTREVISION. >> Otherwise, back this part out. >> > It's not enabling instead of disabling ? ffmpeg detects VFP and NEON during configure. By exposing the options without adding to defaults the port appends --disable-vfp --disable-neon. Build logs: - r455173 (this commit): http://sprunge.us/JjKT - r455176 (back out): http://sprunge.us/SUKJ >>> +CONFIGURE_ARGS_armv7= --disable-fast-unaligned >> >> Can anyone on arm@ list confirm bug 200609 affects armv7 as well? >> I'd prefer to avoid the pessimization otherwise. >> > We supports unaligned access for armv6 starting from r300701 so yes, > it's supported for armv7 from beginning. Mark, can you back this part out as well?