diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-03-24 18:42:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-27 11:19:04 +0000 |
commit | ecff1d6a2dcfcd243d15039f08727889e7889158 (patch) | |
tree | 76d6bcfd6989630adcd00474a1a28fc3fe0d70c1 | |
parent | bf94ea1cc4e966fa2cf55206389f9c34fbd5419d (diff) | |
download | poky-ecff1d6a2dcfcd243d15039f08727889e7889158.tar.gz |
vulkan-samples: Fix build with GCC-15
Include cstdint for uint32_t definition
Update to tip if trunk as it helps with GCC-15 fixes
(From OE-Core rev: 1db86a3381c94951de44bb2b6ec840fd99a7d4be)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
3 files changed, 59 insertions, 1 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples/0001-SPIRV-SpvBuilder.h-add-missing-cstdint-include.patch b/meta/recipes-graphics/vulkan/vulkan-samples/0001-SPIRV-SpvBuilder.h-add-missing-cstdint-include.patch new file mode 100644 index 0000000000..f50aa806da --- /dev/null +++ b/meta/recipes-graphics/vulkan/vulkan-samples/0001-SPIRV-SpvBuilder.h-add-missing-cstdint-include.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From e40c14a3e007fac0e4f2e4164fdf14d1712355bd Mon Sep 17 00:00:00 2001 | ||
2 | From: Sergei Trofimovich <slyich@gmail.com> | ||
3 | Date: Fri, 2 Aug 2024 22:44:21 +0100 | ||
4 | Subject: [PATCH] SPIRV/SpvBuilder.h: add missing <cstdint> include | ||
5 | |||
6 | Without the change `glslang` build fails on upcoming `gcc-15` as: | ||
7 | |||
8 | In file included from /build/source/SPIRV/GlslangToSpv.cpp:45: | ||
9 | SPIRV/SpvBuilder.h:248:30: error: 'uint32_t' has not been declared | ||
10 | 248 | Id makeDebugLexicalBlock(uint32_t line); | ||
11 | | ^~~~~~~~ | ||
12 | |||
13 | Upstream-Status: Backport [https://github.com/KhronosGroup/glslang/commit/e40c14a3e007fac0e4f2e4164fdf14d1712355bd] | ||
14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
15 | --- | ||
16 | SPIRV/SpvBuilder.h | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | --- a/SPIRV/SpvBuilder.h | ||
20 | +++ b/SPIRV/SpvBuilder.h | ||
21 | @@ -56,6 +56,7 @@ namespace spv { | ||
22 | } | ||
23 | |||
24 | #include <algorithm> | ||
25 | +#include <cstdint> | ||
26 | #include <map> | ||
27 | #include <memory> | ||
28 | #include <set> | ||
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch b/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch new file mode 100644 index 0000000000..8d323f2cef --- /dev/null +++ b/meta/recipes-graphics/vulkan/vulkan-samples/0001-framework-Include-stdint.h.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | From 445fcfd7b9245881d769880a5942ce9faa893045 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 23 Mar 2025 20:09:35 -0700 | ||
4 | Subject: [PATCH] framework: Include stdint.h | ||
5 | |||
6 | Needed for uint32_t used in this header | ||
7 | GCC 15 gets upset about it. | ||
8 | |||
9 | Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Samples/pull/1314] | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | framework/platform/configuration.h | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/framework/platform/configuration.h b/framework/platform/configuration.h | ||
16 | index f6a9cae..c15f76f 100644 | ||
17 | --- a/framework/platform/configuration.h | ||
18 | +++ b/framework/platform/configuration.h | ||
19 | @@ -18,6 +18,7 @@ | ||
20 | #pragma once | ||
21 | |||
22 | #include <algorithm> | ||
23 | +#include <cstdint> | ||
24 | #include <map> | ||
25 | #include <memory> | ||
26 | #include <string> | ||
diff --git a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb index 2dd4bba523..75174f6a91 100644 --- a/meta/recipes-graphics/vulkan/vulkan-samples_git.bb +++ b/meta/recipes-graphics/vulkan/vulkan-samples_git.bb | |||
@@ -7,16 +7,20 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=48aa35cefb768436223a6e7f18dc2a2a" | |||
7 | 7 | ||
8 | SRC_URI = "gitsm://github.com/KhronosGroup/Vulkan-Samples.git;branch=main;protocol=https;lfs=0 \ | 8 | SRC_URI = "gitsm://github.com/KhronosGroup/Vulkan-Samples.git;branch=main;protocol=https;lfs=0 \ |
9 | file://0001-vulkan-samples-Fix-reproducibility-issue.patch \ | 9 | file://0001-vulkan-samples-Fix-reproducibility-issue.patch \ |
10 | file://0001-SPIRV-SpvBuilder.h-add-missing-cstdint-include.patch;patchdir=third_party/glslang \ | ||
11 | file://0001-framework-Include-stdint.h.patch \ | ||
10 | " | 12 | " |
11 | 13 | ||
12 | UPSTREAM_CHECK_COMMITS = "1" | 14 | UPSTREAM_CHECK_COMMITS = "1" |
13 | SRCREV = "4838e02a4b08236931bec0532fc26ee3871b466a" | 15 | SRCREV = "8547ce1022a19870d3e49075b5b08ca2d11c8773" |
14 | 16 | ||
15 | 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" |
16 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
17 | 19 | ||
18 | REQUIRED_DISTRO_FEATURES = 'vulkan' | 20 | REQUIRED_DISTRO_FEATURES = 'vulkan' |
19 | 21 | ||
22 | # Avoid erroring on including <ciso646> instead of <version> in c++17 | ||
23 | CXXFLAGS += "-Wno-error=cpp" | ||
20 | inherit cmake features_check | 24 | inherit cmake features_check |
21 | 25 | ||
22 | FILES:${PN} += "${datadir}" | 26 | FILES:${PN} += "${datadir}" |