diff options
-rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch | 37 | ||||
-rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-samples_git.bb | 3 |
2 files changed, 1 insertions, 39 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch b/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch deleted file mode 100644 index 3f6b37dce1..0000000000 --- a/meta/recipes-graphics/vulkan/vulkan-samples/0001-parser.h-Including-missing-cstdint.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | From 590bd5f81207bb55bd02b4a37f73a1f64dac452d Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Mon, 23 Jan 2023 13:20:58 -0800 | ||
4 | Subject: [PATCH] parser.h: Including missing <cstdint> | ||
5 | |||
6 | This is needed from gcc-13+ see [1] | ||
7 | |||
8 | Fixes | ||
9 | |||
10 | ../git/framework/platform/parser.h:282:43: error: 'uint32_t' does not name a type | ||
11 | 282 | *type = static_cast<uint32_t>(number); | ||
12 | | ^~~~~~~~ | ||
13 | ../git/framework/platform/parser.h:21:1: note: 'uint32_t' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'? | ||
14 | |||
15 | [1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html | ||
16 | |||
17 | Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Samples/pull/602] | ||
18 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
19 | --- | ||
20 | framework/platform/parser.h | 1 + | ||
21 | 1 file changed, 1 insertion(+) | ||
22 | |||
23 | diff --git a/framework/platform/parser.h b/framework/platform/parser.h | ||
24 | index 215f3d80..a5bd1344 100644 | ||
25 | --- a/framework/platform/parser.h | ||
26 | +++ b/framework/platform/parser.h | ||
27 | @@ -18,6 +18,7 @@ | ||
28 | #pragma once | ||
29 | |||
30 | #include <cassert> | ||
31 | +#include <cstdint> | ||
32 | #include <string> | ||
33 | #include <typeindex> | ||
34 | #include <vector> | ||
35 | -- | ||
36 | 2.39.1 | ||
37 | |||
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb index 0a936a78e2..20f39905b1 100644 --- a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb +++ b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb | |||
@@ -9,11 +9,10 @@ SRC_URI = "gitsm://github.com/KhronosGroup/Vulkan-Samples.git;branch=main;protoc | |||
9 | file://debugfix.patch \ | 9 | file://debugfix.patch \ |
10 | file://0001-Do-not-use-LFS64-functions-on-linux-musl.patch;patchdir=third_party/spdlog \ | 10 | file://0001-Do-not-use-LFS64-functions-on-linux-musl.patch;patchdir=third_party/spdlog \ |
11 | file://0001-Deprecate-u8string_view.patch;patchdir=third_party/spdlog \ | 11 | file://0001-Deprecate-u8string_view.patch;patchdir=third_party/spdlog \ |
12 | file://0001-parser.h-Including-missing-cstdint.patch \ | ||
13 | " | 12 | " |
14 | 13 | ||
15 | UPSTREAM_CHECK_COMMITS = "1" | 14 | UPSTREAM_CHECK_COMMITS = "1" |
16 | SRCREV = "a42d4eab1e5fe7814dfbe91e3bbaf8ab62cf03f6" | 15 | SRCREV = "3df7dba1b1f428f24cd9a242af78540a518f4b67" |
17 | 16 | ||
18 | UPSTREAM_CHECK_GITTAGREGEX = "These are not the releases you're looking for" | 17 | UPSTREAM_CHECK_GITTAGREGEX = "These are not the releases you're looking for" |
19 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |