From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Apr 30 11:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F1B3754 for ; Wed, 30 Apr 2014 11:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFB8F15A4 for ; Wed, 30 Apr 2014 11:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3UBo09E070300 for ; Wed, 30 Apr 2014 11:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3UBo0eo070299; Wed, 30 Apr 2014 11:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 30 Apr 2014 11:50:00 GMT Resent-Message-Id: <201404301150.s3UBo0eo070299@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Afanasiev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 449B5752 for ; Wed, 30 Apr 2014 11:49:55 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30E1F15A1 for ; Wed, 30 Apr 2014 11:49:55 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s3UBns71071676 for ; Wed, 30 Apr 2014 11:49:54 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s3UBnscf071670; Wed, 30 Apr 2014 11:49:54 GMT (envelope-from nobody) Message-Id: <201404301149.s3UBnscf071670@cgiserv.freebsd.org> Date: Wed, 30 Apr 2014 11:49:54 GMT From: Dmitry Afanasiev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/189136: multimedia/libvpx fails to build on freebsd10/i386 with gcc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Apr 2014 11:50:01 -0000 >Number: 189136 >Category: ports >Synopsis: multimedia/libvpx fails to build on freebsd10/i386 with gcc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Apr 30 11:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitry Afanasiev >Release: 10.0-STABLE >Organization: >Environment: FreeBSD meow 10.0-STABLE FreeBSD 10.0-STABLE #5 r264761: Wed Apr 23 21:55:28 MSK 2014 root@meow:/usr/obj/usr/src/sys/meow i386 >Description: Problem described in ports/185657 also affects build on freebsd10/i386 with gcc: cc -O2 -pipe -march=k8-sse3 -fno-strict-aliasing -m32 -O3 -fPIC -U_FORTIFY_SOUR CE -D_FORTIFY_SOURCE=0 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wdeclar ation-after-statement -Wdisabled-optimization -Wpointer-arith -Wcast-qual -Wvla -Wimplicit-function-declaration -Wuninitialized -Wunused-variable -Wno-unused-fu nction -I. -I"/var/ports/usr/ports/multimedia/libvpx/work/libvpx-1.3.0" -msse2 - c -o vp9/common/x86/vp9_idct_intrin_sse2.c.o vp9/common/x86/vp9_idct_intrin_sse2 .c vp9/common/x86/vp9_idct_intrin_sse2.c: In function 'vp9_idct32x32_1024_add_sse2' : vp9/common/x86/vp9_idct_intrin_sse2.c:3636: note: use -flax-vector-conversions t o permit conversions between vectors with differing element types or numbers of subparts vp9/common/x86/vp9_idct_intrin_sse2.c:3636: error: convert_for_assignment: incompatible type for argument 1 of '__builtin_ia32_psrlqi128' Adding CFLAGS+=-flax-vector-conversions solves problem too, but I'm not known correct way to permanently add this to port. >How-To-Repeat: >Fix: As workaround user can add this to make.conf: .if ${.CURDIR:M*/ports/multimedia/libvpx} CFLAGS+=-flax-vector-conversions .endif >Release-Note: >Audit-Trail: >Unformatted: