diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2026-01-08 23:45:01 +0000 |
|---|---|---|
| committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2026-01-09 22:44:43 +0000 |
| commit | 5ff04b5b479ae1576092c9f0bf2da2fc2eefc474 (patch) | |
| tree | a9bb40c13d4065e2095d0f4c5be4a8e5ecb812f8 | |
| parent | 16c13c141546d985aa9be6aefa76f05efef20c83 (diff) | |
multimedia/vvdec: fix build on powerpc64
/wrkdirs/usr/ports/multimedia/vvdec/work/vvdec-3.1.0/source/Lib/CommonLib/x86/sse41/../InterPredX86.h:199:20: 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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/multimedia/vvdec/Makefile b/multimedia/vvdec/Makefile index 4497a91de8c2..44334118d93f 100644 --- a/multimedia/vvdec/Makefile +++ b/multimedia/vvdec/Makefile @@ -23,6 +23,8 @@ CMAKE_OFF= FREEBSD_VVDEC_ENABLE_X86_SIMD \ CMAKE_TESTING_ON= BUILD_TESTING VVDEC_ENABLE_BITSTREAM_DOWNLOAD CMAKE_TESTING_TARGET= test +CXXFLAGS+= -Wno-error=pass-failed + .include <bsd.port.options.mk> .if ${ARCH} == riscv64 |
