From: Ross Burton Date: Tue, 10 Sep 2024 16:31:39 +0000 (+0100) Subject: vulkan-samples: limit to aarch64/x86-64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05aeab99dedd2a9ccde5bf22942fcbb2d88a311c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git vulkan-samples: limit to aarch64/x86-64 This package is only tested upstream for aarch64 and x86-64 targets, for example there are int/long cast issues on 32-bit platforms and ATSC is only ported to aarch64/x86-64. Instead of listing the machines where we know it doesn't work, limit the recipe to machines where it is known to work. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb index 93d4cdfdd9e..06e996d2435 100644 --- a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb +++ b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb @@ -36,4 +36,4 @@ EXTRA_OECMAKE += "-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON" # This needs to be specified explicitly to avoid xcb/xlib dependencies EXTRA_OECMAKE += "-DVKB_WSI_SELECTION=D2D" -COMPATIBLE_HOST:x86 = "null" +COMPATIBLE_HOST = "(aarch64|x86_64).*-linux"