mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
vulkan-cts-sources: fix build with gcc-15
Fixes: http://errors.yoctoproject.org/Errors/Details/852849/ 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: 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 56 | static bool IsInt8(FormatMode mode, uint32_t num_bits) { | ^~~~~~~~ Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
9af65f1680
commit
8077aa55f1
|
|
@ -0,0 +1,47 @@
|
|||
From 1d80b54aefd1f5f361990b1223c6fe308a8d3085 Mon Sep 17 00:00:00 2001
|
||||
From: Ricardo Garcia <rgarcia@igalia.com>
|
||||
Date: Mon, 21 Apr 2025 12:30:05 +0200
|
||||
Subject: [PATCH] Fix missing #include <cstdint> causing build failures
|
||||
|
||||
Tested on Fedora 42 with clang.
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/google/amber/pull/1092]
|
||||
|
||||
Fixes:
|
||||
http://errors.yoctoproject.org/Errors/Details/852849/
|
||||
|
||||
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:
|
||||
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
|
||||
56 | static bool IsInt8(FormatMode mode, uint32_t num_bits) {
|
||||
| ^~~~~~~~
|
||||
|
||||
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
|
||||
---
|
||||
src/tokenizer.h | 1 +
|
||||
src/type.h | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/tokenizer.h b/src/tokenizer.h
|
||||
index 53efec60..ea4f19df 100644
|
||||
--- a/src/tokenizer.h
|
||||
+++ b/src/tokenizer.h
|
||||
@@ -16,6 +16,7 @@
|
||||
#define SRC_TOKENIZER_H_
|
||||
|
||||
#include <cstdlib>
|
||||
+#include <cstdint>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
diff --git a/src/type.h b/src/type.h
|
||||
index c63779ba..97720f29 100644
|
||||
--- a/src/type.h
|
||||
+++ b/src/type.h
|
||||
@@ -16,6 +16,7 @@
|
||||
#define SRC_TYPE_H_
|
||||
|
||||
#include <cassert>
|
||||
+#include <cstdint>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
@ -22,4 +22,5 @@ SRC_URI += " \
|
|||
git://github.com/Igalia/vk_video_samples.git;protocol=https;nobranch=1;destsuffix=git/external/nvidia-video-samples/src;rev=45fe88b456c683120138f052ea81f0a958ff3ec4 \
|
||||
git://github.com/KhronosGroup/Vulkan-Video-Samples.git;protocol=https;nobranch=1;destsuffix=git/external/vulkan-video-samples/src;rev=0e87744edbb84c9c56c3fc8de9ea5150af5ee4ea \
|
||||
git://github.com/Igalia/video_generator.git;protocol=https;nobranch=1;destsuffix=git/external/video_generator/src;rev=426300e12a5cc5d4676807039a1be237a2b68187 \
|
||||
file://0001-Fix-missing-include-cstdint-causing-build-failures.patch;patchdir=external/amber/src \
|
||||
"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user