diff options
-rw-r--r-- | meta-oe/recipes-graphics/vk-gl-cts/files/0001-Fix-missing-include-cstdint-causing-build-failures.patch | 47 | ||||
-rw-r--r-- | meta-oe/recipes-graphics/vk-gl-cts/vulkan-cts-sources.inc | 1 |
2 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/vk-gl-cts/files/0001-Fix-missing-include-cstdint-causing-build-failures.patch b/meta-oe/recipes-graphics/vk-gl-cts/files/0001-Fix-missing-include-cstdint-causing-build-failures.patch new file mode 100644 index 0000000000..44632bc74f --- /dev/null +++ b/meta-oe/recipes-graphics/vk-gl-cts/files/0001-Fix-missing-include-cstdint-causing-build-failures.patch | |||
@@ -0,0 +1,47 @@ | |||
1 | From 1d80b54aefd1f5f361990b1223c6fe308a8d3085 Mon Sep 17 00:00:00 2001 | ||
2 | From: Ricardo Garcia <rgarcia@igalia.com> | ||
3 | Date: Mon, 21 Apr 2025 12:30:05 +0200 | ||
4 | Subject: [PATCH] Fix missing #include <cstdint> causing build failures | ||
5 | |||
6 | Tested on Fedora 42 with clang. | ||
7 | |||
8 | Upstream-Status: Submitted [https://github.com/google/amber/pull/1092] | ||
9 | |||
10 | Fixes: | ||
11 | http://errors.yoctoproject.org/Errors/Details/852849/ | ||
12 | |||
13 | In file included from TOPDIR/tmp/work/core2-64-oe-linux/vulkan-cts/1.4.1.0/git/external/amber/src/src/type.cc:15: | ||
14 | TOPDIR/tmp/work/core2-64-oe-linux/vulkan-cts/1.4.1.0/git/external/amber/src/src/type.h:56:39: error: 'uint32_t' has not been declared | ||
15 | 56 | static bool IsInt8(FormatMode mode, uint32_t num_bits) { | ||
16 | | ^~~~~~~~ | ||
17 | |||
18 | Signed-off-by: Martin Jansa <martin.jansa@gmail.com> | ||
19 | --- | ||
20 | src/tokenizer.h | 1 + | ||
21 | src/type.h | 1 + | ||
22 | 2 files changed, 2 insertions(+) | ||
23 | |||
24 | diff --git a/src/tokenizer.h b/src/tokenizer.h | ||
25 | index 53efec60..ea4f19df 100644 | ||
26 | --- a/src/tokenizer.h | ||
27 | +++ b/src/tokenizer.h | ||
28 | @@ -16,6 +16,7 @@ | ||
29 | #define SRC_TOKENIZER_H_ | ||
30 | |||
31 | #include <cstdlib> | ||
32 | +#include <cstdint> | ||
33 | #include <memory> | ||
34 | #include <string> | ||
35 | |||
36 | diff --git a/src/type.h b/src/type.h | ||
37 | index c63779ba..97720f29 100644 | ||
38 | --- a/src/type.h | ||
39 | +++ b/src/type.h | ||
40 | @@ -16,6 +16,7 @@ | ||
41 | #define SRC_TYPE_H_ | ||
42 | |||
43 | #include <cassert> | ||
44 | +#include <cstdint> | ||
45 | #include <memory> | ||
46 | #include <string> | ||
47 | #include <vector> | ||
diff --git a/meta-oe/recipes-graphics/vk-gl-cts/vulkan-cts-sources.inc b/meta-oe/recipes-graphics/vk-gl-cts/vulkan-cts-sources.inc index 9c95aa4af7..8c2a495dc8 100644 --- a/meta-oe/recipes-graphics/vk-gl-cts/vulkan-cts-sources.inc +++ b/meta-oe/recipes-graphics/vk-gl-cts/vulkan-cts-sources.inc | |||
@@ -22,4 +22,5 @@ SRC_URI += " \ | |||
22 | git://github.com/Igalia/vk_video_samples.git;protocol=https;nobranch=1;destsuffix=git/external/nvidia-video-samples/src;rev=45fe88b456c683120138f052ea81f0a958ff3ec4 \ | 22 | git://github.com/Igalia/vk_video_samples.git;protocol=https;nobranch=1;destsuffix=git/external/nvidia-video-samples/src;rev=45fe88b456c683120138f052ea81f0a958ff3ec4 \ |
23 | git://github.com/KhronosGroup/Vulkan-Video-Samples.git;protocol=https;nobranch=1;destsuffix=git/external/vulkan-video-samples/src;rev=0e87744edbb84c9c56c3fc8de9ea5150af5ee4ea \ | 23 | git://github.com/KhronosGroup/Vulkan-Video-Samples.git;protocol=https;nobranch=1;destsuffix=git/external/vulkan-video-samples/src;rev=0e87744edbb84c9c56c3fc8de9ea5150af5ee4ea \ |
24 | git://github.com/Igalia/video_generator.git;protocol=https;nobranch=1;destsuffix=git/external/video_generator/src;rev=426300e12a5cc5d4676807039a1be237a2b68187 \ | 24 | git://github.com/Igalia/video_generator.git;protocol=https;nobranch=1;destsuffix=git/external/video_generator/src;rev=426300e12a5cc5d4676807039a1be237a2b68187 \ |
25 | file://0001-Fix-missing-include-cstdint-causing-build-failures.patch;patchdir=external/amber/src \ | ||
25 | " | 26 | " |