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,4 +1,4 @@ -xrt (202210.2.13.466+dfsg-8ubuntu4) noble; urgency=medium +xrt (202210.2.13.466+dfsg-8ubuntu5) noble; urgency=medium * Ignore mismatched-new-delete error too * Add another missing cstdint include 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 2024-04-21 17:36:46.000000000 +0000 +++ xrt-202210.2.13.466+dfsg/debian/patches/add-stdint.patch 2024-04-21 17:36:46.000000000 +0000 @@ -2,23 +2,33 @@ /<>/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; | ^~~~~~~ +/<>/src/runtime_src/core/edge/user/zynq_dev.h:29:21: error: ‘uint64_t’ was not declared in this scope + 29 | std::vector& iv); + | ^~~~~~~~ Author: Gianfranco Costamagna Last-Update: 2024-04-22 +Index: xrt-202210.2.13.466+dfsg/src/runtime_src/core/edge/user/aie/common_layer/adf_api_config.h +=================================================================== --- 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 @@ +@@ -16,6 +16,7 @@ #pragma once -+#ifdef __cplusplus -+#include +#include -+#else -+#include -+#include -+#endif -+ #include #include +Index: xrt-202210.2.13.466+dfsg/src/runtime_src/core/edge/user/zynq_dev.h +=================================================================== +--- xrt-202210.2.13.466+dfsg.orig/src/runtime_src/core/edge/user/zynq_dev.h ++++ xrt-202210.2.13.466+dfsg/src/runtime_src/core/edge/user/zynq_dev.h +@@ -19,6 +19,7 @@ + #include + #include + #include ++#include + + class zynq_device { + public: