From ca79fc99cddce4d2d3bb20d61b5c30d529e5c1a5 Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Mon, 26 Aug 2024 12:01:19 +0200 Subject: [PATCH] panvk: Don't pretend we can compile for v9 The JM backend is not ready for v9 yet, so let's just drop it from the list of architecture to build for. Signed-off-by: Boris Brezillon Reviewed-by: Rebecca Mckeever Reviewed-by: Mary Guillemard Reviewed-by: Lars-Ivar Hesselberg Simonsen Reviewed-by: John Anthony Acked-by: Erik Faye-Lund Part-of: --- src/panfrost/vulkan/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panfrost/vulkan/meson.build b/src/panfrost/vulkan/meson.build index be7a6ca51b9..da7d318395b 100644 --- a/src/panfrost/vulkan/meson.build +++ b/src/panfrost/vulkan/meson.build @@ -73,10 +73,10 @@ common_per_arch_files = [ 'panvk_vX_shader.c', ] -foreach arch : [6, 7, 9, 10] +foreach arch : [6, 7, 10] if arch in valhall_archs # We're lacking key components to compile common source files for v9/v10. - # Just add the v9/v10 entrypoints for now. + # Just add the v10 entrypoints for now. per_arch_files = [ panvk_entrypoints[0], 'panvk_vX_blend.c',