diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2023-08-03 10:39:56 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2023-08-03 10:39:56 +0000 |
commit | d8f6f803ed44332c9684187c9d109d3b532d30dd (patch) | |
tree | f9385ffa19177ee501d933c17ab6e306a345269b | |
parent | f9f98dc284d75f25b00ebf9037b141f5528c348e (diff) |
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]
-rw-r--r-- | multimedia/vvdec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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> |