]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
vulkan-samples: limit to aarch64/x86-64
authorRoss Burton <ross.burton@arm.com>
Tue, 10 Sep 2024 16:31:39 +0000 (17:31 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 11 Sep 2024 20:06:40 +0000 (21:06 +0100)
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 <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-graphics/vulkan/vulkan-samples_git.bb

index 93d4cdfdd9e7f7b37f76960b684ab0aaa263fee2..06e996d24358b8f8866736f11ffb672f4e277b83 100644 (file)
@@ -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"