<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">https://github.com/eteran/edb-debugger/pull/837

From 934de81a7799f3e1d210366e0eb5ea86d172ead4 Mon Sep 17 00:00:00 2001
From: Sam James &lt;sam@gentoo.org&gt;
Date: Sat, 15 Apr 2023 10:05:11 +0100
Subject: [PATCH] Fix build with GCC 13

GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some
are no longer transitively included.

See https://gnu.org/software/gcc/gcc-13/porting_to.html.

Bug: https://bugs.gentoo.org/897890
--- a/plugins/DebuggerCore/unix/linux/FeatureDetect.cpp
+++ b/plugins/DebuggerCore/unix/linux/FeatureDetect.cpp
@@ -19,6 +19,7 @@ along with this program.  If not, see &lt;http://www.gnu.org/licenses/&gt;.
 #include "FeatureDetect.h"
 #include "edb.h"
 
+#include &lt;cstdint&gt;
 #include &lt;fcntl.h&gt;
 #include &lt;iomanip&gt;
 #include &lt;iostream&gt;
-- 
2.40.0

</pre></body></html>