diff options
Diffstat (limited to 'dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-SPIRVutil-Include-cstdint-to-fix-GCC-13-build.patch')
-rw-r--r-- | dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-SPIRVutil-Include-cstdint-to-fix-GCC-13-build.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-SPIRVutil-Include-cstdint-to-fix-GCC-13-build.patch b/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-SPIRVutil-Include-cstdint-to-fix-GCC-13-build.patch new file mode 100644 index 00000000..4b1078e1 --- /dev/null +++ b/dynamic-layers/clang-layer/recipes-opencl/igc/files/0001-SPIRVutil-Include-cstdint-to-fix-GCC-13-build.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From 5ea17d8bcf3daa03ef95d0fed796f68cec7dc32d Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= <fzatlouk@redhat.com> | ||
3 | Date: Wed, 18 Jan 2023 22:22:23 +0000 | ||
4 | Subject: [PATCH] SPIRVutil: Include cstdint to fix GCC 13 build | ||
5 | |||
6 | SPIRVutil: Include cstdint to fix GCC 13 build | ||
7 | |||
8 | Upstream-Status: Backport [https://github.com/intel-innersource/drivers.gpu.compiler.staging/commit/5ea17d8bcf3daa03ef95d0fed796f68cec7dc32d] | ||
9 | |||
10 | Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> | ||
11 | --- | ||
12 | IGC/AdaptorOCL/SPIRV/libSPIRV/SPIRVUtil.h | 1 + | ||
13 | 1 file changed, 1 insertion(+) | ||
14 | |||
15 | diff --git a/IGC/AdaptorOCL/SPIRV/libSPIRV/SPIRVUtil.h b/IGC/AdaptorOCL/SPIRV/libSPIRV/SPIRVUtil.h | ||
16 | index 1076d5d42..9685e477f 100644 | ||
17 | --- a/IGC/AdaptorOCL/SPIRV/libSPIRV/SPIRVUtil.h | ||
18 | +++ b/IGC/AdaptorOCL/SPIRV/libSPIRV/SPIRVUtil.h | ||
19 | @@ -49,6 +49,7 @@ THE SOFTWARE. | ||
20 | #define SPIRVUTIL_H_ | ||
21 | |||
22 | #include <algorithm> | ||
23 | +#include <cstdint> | ||
24 | #include <functional> | ||
25 | #include <limits> | ||
26 | #include <map> | ||
27 | -- | ||
28 | 2.34.1 | ||
29 | |||