diff -Nru xrt-202210.2.13.466+dfsg/debian/changelog xrt-202210.2.13.466+dfsg/debian/changelog --- xrt-202210.2.13.466+dfsg/debian/changelog 2024-04-21 17:36:46.000000000 +0000 +++ xrt-202210.2.13.466+dfsg/debian/changelog 2024-04-21 17:36:46.000000000 +0000 @@ -1,6 +1,7 @@ -xrt (202210.2.13.466+dfsg-8ubuntu3) noble; urgency=medium +xrt (202210.2.13.466+dfsg-8ubuntu4) noble; urgency=medium * Ignore mismatched-new-delete error too + * Add another missing cstdint include -- Gianfranco Costamagna Sun, 21 Apr 2024 19:36:46 +0200 diff -Nru xrt-202210.2.13.466+dfsg/debian/patches/add-stdint.patch xrt-202210.2.13.466+dfsg/debian/patches/add-stdint.patch --- xrt-202210.2.13.466+dfsg/debian/patches/add-stdint.patch 1970-01-01 00:00:00.000000000 +0000 +++ xrt-202210.2.13.466+dfsg/debian/patches/add-stdint.patch 2024-04-21 17:36:46.000000000 +0000 @@ -0,0 +1,24 @@ +Description: Include missing stdint.h +/<>/src/runtime_src/core/edge/common/../user/aie/common_layer/adf_api_config.h:27:5: error: ‘uint8_t’ does not name a type + 27 | uint8_t hw_gen; + | ^~~~~~~ +Author: Gianfranco Costamagna +Last-Update: 2024-04-22 + +--- xrt-202210.2.13.466+dfsg.orig/src/runtime_src/core/edge/user/aie/common_layer/adf_api_config.h ++++ xrt-202210.2.13.466+dfsg/src/runtime_src/core/edge/user/aie/common_layer/adf_api_config.h +@@ -16,6 +16,14 @@ + + #pragma once + ++#ifdef __cplusplus ++#include ++#include ++#else ++#include ++#include ++#endif ++ + #include + #include + diff -Nru xrt-202210.2.13.466+dfsg/debian/patches/series xrt-202210.2.13.466+dfsg/debian/patches/series --- xrt-202210.2.13.466+dfsg/debian/patches/series 2024-04-21 15:36:43.000000000 +0000 +++ xrt-202210.2.13.466+dfsg/debian/patches/series 2024-04-21 17:36:46.000000000 +0000 @@ -10,3 +10,4 @@ 0010-Fix-format-of-sscanf.patch 0011-module_loader.cpp-Change-modules-path-to-multiarch.patch 0012-Add-cstdint-for-gcc13.patch +add-stdint.patch