git: d8f6f803ed44 - main - multimedia/vvdec: fix build on powerpc64le
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 03 Aug 2023 10:42:09 UTC
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>