Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Aug 2023 10:42:09 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d8f6f803ed44 - main - multimedia/vvdec: fix build on powerpc64le
Message-ID:  <202308031042.373Ag9WI058525@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d8f6f803ed44332c9684187c9d109d3b532d30dd

commit d8f6f803ed44332c9684187c9d109d3b532d30dd
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-08-03 10:39:56 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-08-03 10:39:56 +0000

    multimedia/vvdec: fix build on powerpc64le
    
    /wrkdirs/usr/ports/multimedia/vvdec/work/vvdec-2.1.0/source/Lib/CommonLib/x86/sse41/../BufferX86.h:1041:6: error: loop not vectorized: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Werror,-Wpass-failed=transform-warning]
---
 multimedia/vvdec/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/multimedia/vvdec/Makefile b/multimedia/vvdec/Makefile
index 0e778245b844..cccf099ef720 100644
--- a/multimedia/vvdec/Makefile
+++ b/multimedia/vvdec/Makefile
@@ -20,7 +20,8 @@ GH_ACCOUNT=	fraunhoferhhi
 
 CMAKE_ON=	BUILD_SHARED_LIBS \
 		VVDEC_INSTALL_VVDECAPP
-CMAKE_OFF=	FREEBSD_VVDEC_ENABLE_X86_SIMD
+CMAKE_OFF=	FREEBSD_VVDEC_ENABLE_X86_SIMD \
+		VVDEC_ENABLE_WARNINGS_AS_WERROR
 CMAKE_TESTING_TARGET=	test enable-bitstream-download=1 # tests fail to download bitstreams, see https://github.com/fraunhoferhhi/vvdec/issues/125
 
 .include <bsd.port.options.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308031042.373Ag9WI058525>