From 014a8201c857e81abeca026211e84f9c9353c9ba Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sun, 10 Nov 2024 11:36:24 +0100 Subject: [PATCH] package/libvpl: not supported on mips64 Although adding " || defined(__mips__)" here: https://github.com/intel/libvpl/blob/main/api/vpl/mfxdefs.h#L71 would fix the problem, libvpl alone makes no sense and the only dependee, intel-vpl-gpu-rt, is unsupported on mips anyway. Fixes: http://autobuild.buildroot.net/results/50d/50d64ab2d547c70b39e2421ee2763d8309873125/ Signed-off-by: Bernd Kuhls Signed-off-by: Arnout Vandecappelle --- package/libvpl/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libvpl/Config.in b/package/libvpl/Config.in index b9e9a20fd7..5a370ed2e3 100644 --- a/package/libvpl/Config.in +++ b/package/libvpl/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_LIBVPL_ARCH_SUPPORTS bool - default y if BR2_ARCH_IS_64 + default y if BR2_ARCH_IS_64 && !BR2_mips64 && !BR2_mips64el default y if BR2_arm config BR2_PACKAGE_LIBVPL